toJson method

Map<String, dynamic> toJson()

Implementation

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