toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final aggregateBy = this.aggregateBy;
  final bucketByActivitySegment = this.bucketByActivitySegment;
  final bucketByActivityType = this.bucketByActivityType;
  final bucketBySession = this.bucketBySession;
  final bucketByTime = this.bucketByTime;
  final endTimeMillis = this.endTimeMillis;
  final filteredDataQualityStandard = this.filteredDataQualityStandard;
  final startTimeMillis = this.startTimeMillis;
  return {
    'aggregateBy': ?aggregateBy,
    'bucketByActivitySegment': ?bucketByActivitySegment,
    'bucketByActivityType': ?bucketByActivityType,
    'bucketBySession': ?bucketBySession,
    'bucketByTime': ?bucketByTime,
    'endTimeMillis': ?endTimeMillis,
    'filteredDataQualityStandard': ?filteredDataQualityStandard,
    'startTimeMillis': ?startTimeMillis,
  };
}