EventDataValue.fromJson constructor
Implementation
factory EventDataValue.fromJson(Map<String, dynamic> json) {
return EventDataValue(
id: json['id'],
name: json['id'],
dataElement: json['dataElement'],
value: json['value'] ?? '',
created: json['created'],
lastUpdated: json['lastUpdated'],
event: json['event'],
dirty: json['dirty']);
}