Book constructor

Book({
  1. List<String>? type,
  2. String? context,
  3. String? name,
  4. String? isbn,
  5. String? description,
  6. String? image,
  7. Offer? offers,
  8. Author? author,
})

Implementation

Book({
  this.type,
  this.context,
  this.name,
  this.isbn,
  this.description,
  this.image,
  this.offers,
  this.author,
});