Comic constructor

Comic({
  1. int? id,
  2. Publisher? publisher,
  3. String? seriesName,
  4. String? summary,
  5. int? yearStarted,
  6. String? status,
  7. String? coverImage,
  8. String? backgroundImage,
  9. double? rating,
  10. DateTime? dateCreated,
})

Implementation

Comic(
    {this.id,
    this.publisher,
    this.seriesName,
    this.summary,
    this.yearStarted,
    this.status,
    this.coverImage,
    this.backgroundImage,
    this.rating,
    this.dateCreated});