NiceSongPicker constructor

const NiceSongPicker({
  1. Key? key,
  2. required List<NiceSongEntry> songs,
  3. ValueChanged<String>? onAdd,
  4. ValueChanged<String>? onRemove,
  5. ValueChanged<String>? onVote,
  6. ValueChanged<String>? onSearch,
  7. bool showQueue = true,
  8. bool readOnly = false,
})

Implementation

const NiceSongPicker({
  super.key,
  required this.songs,
  this.onAdd,
  this.onRemove,
  this.onVote,
  this.onSearch,
  this.showQueue = true,
  this.readOnly = false,
});