toJson method

Map<String, dynamic> toJson()
override

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['type'] = this.type;
  data['dashboard'] = this.dashboard!.toJson();
  data['contentcount'] = this.contentCount;
  data['interpretationCount'] = this.interpretationCount;
  data['interpretationLikeCount'] = this.interpretationLikeCount;
  data['chart'] = this.chart;
  data['report'] = this.report;
  data['dirty'] = this.dirty;

  return data;
}