MigratableResource_AutomlModel.fromJson constructor
MigratableResource_AutomlModel.fromJson(
- Object? j
Implementation
factory MigratableResource_AutomlModel.fromJson(Object? j) {
final json = j as Map<String, Object?>;
return MigratableResource_AutomlModel(
model: switch (json['model']) {
null => '',
Object $1 => decodeString($1),
},
modelDisplayName: switch (json['modelDisplayName']) {
null => '',
Object $1 => decodeString($1),
},
);
}