class TopBannerModel { final int id; final String image; TopBannerModel({ required this.id, required this.image, }); factory TopBannerModel.fromJson(Map json) { return TopBannerModel( id: json['id'], image: json['image'], ); } }