import 'package:json_annotation/json_annotation.dart'; part 'mall_bean.g.dart'; /// @JsonSerializable(explicitToJson: true) class MallBean { String? productId; String? productName; int? productType; String? price; String? productImage; String? productSelectImage; String? productDesc; MallBean(this.productId, this.productName, this.productType, this.price, this.productImage, this.productSelectImage, this.productDesc); factory MallBean.fromJson(Map json) => _$MallBeanFromJson(json); Map toJson() => _$MallBeanToJson(this); }