NiceKaraokePicker constructor

const NiceKaraokePicker({
  1. Key? key,
  2. required List<NiceKaraokeSong> songs,
  3. List<NiceKaraokeSong> queue = const [],
  4. void onEnqueue(
    1. String songId,
    2. String? performerId
    )?,
  5. ValueChanged<String>? onDequeue,
  6. VoidCallback? onNext,
  7. String? nowPlayingId,
  8. bool readOnly = false,
})

Implementation

const NiceKaraokePicker({
  super.key,
  required this.songs,
  this.queue = const [],
  this.onEnqueue,
  this.onDequeue,
  this.onNext,
  this.nowPlayingId,
  this.readOnly = false,
});