BookData constructor

const BookData({
  1. required int id,
  2. required String code,
  3. required String title,
  4. required int seqNum,
  5. required bool published,
  6. required bool locked,
  7. String? imagePath,
  8. String? description,
  9. String? note,
})

Implementation

const BookData({
  required this.id,
  required this.code,
  required this.title,
  required this.seqNum,
  required this.published,
  required this.locked,
  this.imagePath,
  this.description,
  this.note,
});