Book constructor

Book(String title, String contents, Uri url, DateTime datetime, Uri thumbnail, String isbn, List<String> authors, String publisher, List<String> translators, int price, int salePrice, 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);