toJson method

Map<String, dynamic> toJson()

Implementation

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