import 'package:json_annotation/json_annotation.dart'; part 'member_pop_up_bean.g.dart'; @JsonSerializable() class MemberPopUpBean { @JsonKey(name: "enable") bool? enable; MemberPopUpBean(this.enable); factory MemberPopUpBean.fromJson(Map json) => _$MemberPopUpBeanFromJson(json); Map toJson() => _$MemberPopUpBeanToJson(this); }