@freezed
class ProductModel extends ProductEntity with _$ProductModel {
// ignore: invalid_annotation_target
@JsonSerializable(fieldRename: FieldRename.snake, explicitToJson: true)
const factory ProductModel(
int id,
String productImage,
String productPrice,
) = _ProductModel;
factory ProductModel.fromJson(Map<String, dynamic> json) =>
_$ProductModelFromJson(json);
}
enter image description here
我尝试更改自动生成的文件,错误消失了,但如果发生错误,自动生成的整个点不适合这种情况。
1条答案
按热度按时间jtjikinw1#
我找到了一个解决方案--去掉扩展中的方法。
实体:
型号: