1import '/features/main_menu/domain/entities/banner_entity.dart';
12 id: json[
'id'] as
int?,
13 image: json[
'image'] as String?,
14 name: json[
'name'] as String?,
const BannerEntity({ this.id, this.image, this.name, })
Map< String, dynamic > toJson()
const BannerModel({ super.id, super.image, super.name, })