toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final eventCount = this.eventCount;
  final fixedInterval = this.fixedInterval;
  final idleDuration = this.idleDuration;
  final overlapEventCount = this.overlapEventCount;
  return {
    'eventCount': ?eventCount,
    'fixedInterval': ?fixedInterval,
    'idleDuration': ?idleDuration,
    'overlapEventCount': ?overlapEventCount,
  };
}