toJson method

Map<String, dynamic> toJson()

Implementation

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