refactor: remove default value for isManga

This commit is contained in:
kodjomoustapha 2024-12-31 11:13:42 +01:00
parent 7cf5614bb5
commit 35c0502e87
3 changed files with 3 additions and 3 deletions

View file

@ -23,7 +23,7 @@ class History {
History({
this.id = Isar.autoIncrement,
this.isManga = true,
this.isManga,
required this.itemType,
required this.chapterId,
required this.mangaId,

View file

@ -65,7 +65,7 @@ class Manga {
required this.name,
required this.status,
required this.description,
this.isManga = true,
this.isManga,
this.itemType = ItemType.manga,
this.dateAdded,
this.lastUpdate,

View file

@ -86,7 +86,7 @@ class Source {
this.versionLast = "0.0.1",
this.sourceCode = '',
this.headers = '',
this.isManga = true,
this.isManga,
this.itemType = ItemType.manga,
this.appMinVerReq = "",
this.additionalParams = "",