import 'package:json_annotation/json_annotation.dart'; part 'ad_free_bean.g.dart'; @JsonSerializable() class AdFreeBean { String? BackgroundImage; String? BtnImage; String? BtnAction; AdFreeBean(this.BackgroundImage, this.BtnImage, this.BtnAction); factory AdFreeBean.fromJson(Map json) => _$AdFreeBeanFromJson(json); Map toJson() => _$AdFreeBeanToJson(this); }