DataElement.fromJson constructor

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

Implementation

factory DataElement.fromJson(Map<String, dynamic> json) {
  return DataElement(
      id: json['id'],
      name: json['name'],
      created: json['created'],
      shortName: json['shortName'],
      code: json['code'],
      displayName: json['displayName'],
      valueType: json['valueType'],
      aggregationType: json['aggregationType'],
      description: json['description'],
      dirty: json['dirty'],
      translations: json['translations']);
}