class MangaModel { String? name; String? link; String? imageUrl; String? description; String? author; int? status; List? genre = []; String? source; String? lang; String? baseUrl; String? dateFormat; String? dateFormatLocale; String? apiUrl; int? page; String? query; int? sourceId; List? names; List? urls; List? chaptersScanlators; List? chaptersDateUploads; List? chaptersVolumes; List? chaptersChaps; List? images; List? statusList; MangaModel( {this.source = "", this.author = "", this.genre, this.imageUrl = "", this.lang = "", this.link = "", this.name = "", this.status = 0, this.description = "", this.apiUrl = "", this.baseUrl = "", this.dateFormat = "", this.dateFormatLocale = "", this.page = 1, this.query = "", this.sourceId = 0, this.names, this.chaptersDateUploads, this.chaptersScanlators, this.urls, this.chaptersVolumes, this.chaptersChaps, this.images, this.statusList}); }