toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (appStartTime != null) 'appStartTime': appStartTime!.toJson(),
      if (executionId != null) 'executionId': executionId!,
      if (graphicsStats != null) 'graphicsStats': graphicsStats!.toJson(),
      if (historyId != null) 'historyId': historyId!,
      if (perfEnvironment != null)
        'perfEnvironment': perfEnvironment!.toJson(),
      if (perfMetrics != null) 'perfMetrics': perfMetrics!,
      if (projectId != null) 'projectId': projectId!,
      if (stepId != null) 'stepId': stepId!,
    };