toJson method

Map<String, dynamic> toJson()

Implementation

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