MangaCheck.fromJson constructor Null safety
Implementation
MangaCheck.fromJson(Map<String, dynamic> json) {
try {
result = json['result'] ?? '';
} on Exception catch (e) {
throw MangadexServerException(json);
}
}
MangaCheck.fromJson(Map<String, dynamic> json) {
try {
result = json['result'] ?? '';
} on Exception catch (e) {
throw MangadexServerException(json);
}
}