BookInfo constructor

const BookInfo({
  1. required String title,
  2. required List<String> authors,
  3. required String publisher,
  4. required double averageRating,
  5. required List<String> categories,
  6. required String contentVersion,
  7. required String description,
  8. required Map<String, Uri> imageLinks,
  9. required String language,
  10. required String maturityRating,
  11. required int pageCount,
  12. required DateTime publishedDate,
  13. required int ratingsCount,
})

Implementation

const BookInfo({
  required this.title,
  required this.authors,
  required this.publisher,
  required this.averageRating,
  required this.categories,
  required this.contentVersion,
  required this.description,
  required this.imageLinks,
  required this.language,
  required this.maturityRating,
  required this.pageCount,
  required this.publishedDate,
  required this.ratingsCount,
});