我如何创建一个自定义模型转换器与冻结在Flutter到这个模型?
t2a7ltrp1#
示例如下:
@freezed class ContactAccount with _$ContactAccount { const factory ContactAccount({ required int id, String? accountNumber, String? bank, num? stateId, }) = _ContactAccount; factory ContactAccount.fromJson(Map<String, Object?> json) => _$ContactAccountFromJson(json); }
要了解更多关于freezed的信息,请查看以下链接:https://pub.dev/packages/freezed
freezed
1条答案
按热度按时间t2a7ltrp1#
示例如下:
要了解更多关于
freezed
的信息,请查看以下链接:https://pub.dev/packages/freezed