toJson method
Implementation
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['lastUpdated'] = this.lastUpdated;
data['id'] = this.id;
data['created'] = this.created;
data['name'] = this.name;
data['dirty'] = this.dirty;
data['dataElement'] = this.dataElement;
data['attributeOptionCombo'] = this.attributeOptionCombo;
data['categoryOptionCombo'] = this.categoryOptionCombo;
data['dataValueSet'] = this.dataValueSet;
data['value'] = this.value;
data['comment'] = this.comment;
data['synced'] = this.synced;
return data;
}