Book constructor

const Book({
  1. required String title,
  2. required String author,
  3. required String md5,
  4. required String imgUrl,
  5. required String size,
  6. required String genre,
  7. required Format format,
})

Implementation

const factory Book({
  required String title,
  required String author,
  required String md5,
  required String imgUrl,
  required String size,
  required String genre,
  required Format format,
}) = _Book;