fromJson static method
Implementation
static ModelFieldGetAttribute fromJson(Map<String, dynamic> json) {
return ModelFieldGetAttribute(
fieldID: json['field_id'],
index: json['index'],
subField: json['sub_field'] != null
? ModelFieldGetAttribute.fromJson(json['sub_field'])
: null,
);
}