toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final durationMs = this.durationMs;
  final offsetMs = this.offsetMs;
  final type = this.type;
  return {'durationMs': ?durationMs, 'offsetMs': ?offsetMs, 'type': ?type};
}