todo alert for next version

This commit is contained in:
OkaykOrhmn 2025-04-07 14:50:33 +03:30
parent 1d67da9598
commit 032ad96f8e
1 changed files with 2 additions and 1 deletions

View File

@ -6,7 +6,8 @@ class MainPageBannerType {
factory MainPageBannerType.fromJson(Map<String, dynamic> json) {
return MainPageBannerType(
image: json['image'],
// fix if it null
image: json['image'] ?? '',
link: json['link'],
);
}