DataStructureField.fromJson constructor

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

Implementation

DataStructureField.fromJson(Map<String, dynamic>  json) {
  this.name = json['name'];
  this.type = json['type'];
  this.listLevel = json['listLevel'];
  this.path = json['path'];

  this.refStructure = json['refStructure'] != null ? DataStructure.fromJson(json['refStructure']) : null;
}