NiceKaraokeSong constructor

const NiceKaraokeSong({
  1. required String id,
  2. required String title,
  3. required String artist,
  4. NiceKaraokeDifficulty? difficulty,
  5. bool hasLyrics = false,
  6. String? language,
  7. String? performerName,
})

Implementation

const NiceKaraokeSong({
  required this.id,
  required this.title,
  required this.artist,
  this.difficulty,
  this.hasLyrics = false,
  this.language,
  this.performerName,
});