SongData constructor

const SongData({
  1. required int id,
  2. required String name,
  3. required bool locked,
  4. required bool published,
  5. String? imagePath,
  6. String? description,
  7. String? note,
  8. String? youtubeCode,
  9. String? youtubeVideoInfo,
  10. required int albumId,
})

Implementation

const SongData({
  required this.id,
  required this.name,
  required this.locked,
  required this.published,
  this.imagePath,
  this.description,
  this.note,
  this.youtubeCode,
  this.youtubeVideoInfo,
  required this.albumId,
});