AlbumData constructor

const AlbumData({
  1. required int id,
  2. required String code,
  3. required String name,
  4. required String nameInEnglish,
  5. required int seqNum,
  6. required bool published,
  7. required bool locked,
  8. String? imagePath,
  9. required int publishedSongCount,
  10. required int totalSongCount,
  11. String? description,
  12. String? note,
})

Implementation

const AlbumData({
  required this.id,
  required this.code,
  required this.name,
  required this.nameInEnglish,
  required this.seqNum,
  required this.published,
  required this.locked,
  this.imagePath,
  required this.publishedSongCount,
  required this.totalSongCount,
  this.description,
  this.note,
});