toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final kind = this.kind;
  final timePeriod = this.timePeriod;
  final updates = this.updates;
  return {'kind': ?kind, 'timePeriod': ?timePeriod, 'updates': ?updates};
}