ModelList constructor
Implementation
ModelList(dynamic json, {this.type, Field Function(String name, dynamic json)? fieldInstanciator}) : super(null) {
if (json is List) {
for (int i = 0; i < json.length; i++) {
_addField(json[i], fieldInstanciator);
}
}
}