数据模型(Model)空安全适配主要以下两种情况:含有命令构造函数的模型含有命名工厂构造函数的模型含有命令构造函数的模型含有命令构造函数的模型的空安全适配技巧:适配前:///数据模型
class ItemModel {
int totalCount;
List<Item> resultList;
ItemModel.fromJson(Map<String, dynamic> json) {
totalCount = json['totalCount'];
if (json['resultList'] != null) {
r...
阅读全部