Manga(- {required String id,
- required Map<String, dynamic> title,
- required List altTitles,
- required Map<String, dynamic> description,
- required bool? isLocked,
- required String originalLang,
- required List tags,
- required String createdAt,
- required String updatedAt,
- String? demographic,
- String? lastChapter,
- String? lastVolume,
- String? contentRating,
- Map<String, dynamic>? links,
- String? releaseYear,
- String? status,
- Map<String, dynamic>? chapters,
- required String cover,
- required Author artist,
- required Author author}
)
Implementation
Manga(
{required this.id,
required this.title,
required this.altTitles,
required this.description,
required this.isLocked,
required this.originalLang,
required this.tags,
required this.createdAt,
required this.updatedAt,
this.demographic,
this.lastChapter,
this.lastVolume,
this.contentRating,
this.links,
this.releaseYear,
this.status,
this.chapters,
required this.cover,
required this.artist,
required this.author});