fromJson static method
Implementation
static ModelFieldEntity fromJson(Map<String, dynamic> json) {
return ModelFieldEntity(
id: json['id'],
description: json['description'],
variable: Variable.fromJson(json['variable']),
jsonKey: json['jsonKey'],
);
}