toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'global'] = this.global;
json[r'global_meta'] = this.globalMeta;
json[r'global_metrics_order'] = this.globalMetricsOrder;
json[r'global_thresholds'] = this.globalThresholds;
json[r'tracks'] = this.tracks;
return json;
}