toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
  json[r'time_range'] = this.timeRange;
  json[r'filter_events'] = this.filterEvents;
  json[r'group_by'] = this.groupBy;
  return json;
}