toJson method
Implementation
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['id'] = this.id;
data['name'] = this.name;
data['displayName'] = this.displayName;
data['formName'] = this.formName;
data['renderType'] = this.renderType;
data['sortOrder'] = this.sortOrder;
data['created'] = this.created;
data['lastUpdated'] = this.lastUpdated;
data['program'] = this.program;
data['dirty'] = this.dirty;
data['attributes'] = this.attributes;
return data;
}