toJson method

Map<String, dynamic> toJson()
override

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['showRowTotals'] = this.showRowTotals;
  data['sortOrder'] = this.sortOrder;
  data['created'] = this.created;
  data['lastUpdated'] = this.lastUpdated;
  data['dataSet'] = this.dataSet;
  data['dirty'] = this.dirty;
  data['dataElements'] = this.dataElements;
  data['greyedFields'] = this.greyedFields;
  return data;
}