fromJson static method

ModelFieldEntity fromJson(
  1. Map<String, dynamic> json
)

Implementation

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