Book constructor

Book(
  1. String title,
  2. String contents,
  3. Uri url,
  4. DateTime datetime,
  5. Uri thumbnail,
  6. String isbn,
  7. List<String> authors,
  8. String publisher,
  9. List<String> translators,
  10. int price,
  11. int salePrice,
  12. String status,
)

Implementation

Book(
    String title,
    String contents,
    Uri url,
    DateTime datetime,
    Uri thumbnail,
    this.isbn,
    this.authors,
    this.publisher,
    this.translators,
    this.price,
    this.salePrice,
    this.status)
    : super(title, contents, url, datetime, thumbnail);