Book constructor

Book({
  1. String? title,
  2. String? titleId,
  3. String? mainType,
  4. List<String>? lang,
  5. List<Collection>? collection,
})

Implementation

Book({this.title, this.titleId, this.mainType, this.lang, this.collection});