toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final androidInstrumentationTest = this.androidInstrumentationTest;
  final androidRoboTest = this.androidRoboTest;
  final androidTestLoop = this.androidTestLoop;
  final disablePerformanceMetrics = this.disablePerformanceMetrics;
  final disableVideoRecording = this.disableVideoRecording;
  final iosRoboTest = this.iosRoboTest;
  final iosTestLoop = this.iosTestLoop;
  final iosTestSetup = this.iosTestSetup;
  final iosXcTest = this.iosXcTest;
  final testSetup = this.testSetup;
  final testTimeout = this.testTimeout;
  return {
    'androidInstrumentationTest': ?androidInstrumentationTest,
    'androidRoboTest': ?androidRoboTest,
    'androidTestLoop': ?androidTestLoop,
    'disablePerformanceMetrics': ?disablePerformanceMetrics,
    'disableVideoRecording': ?disableVideoRecording,
    'iosRoboTest': ?iosRoboTest,
    'iosTestLoop': ?iosTestLoop,
    'iosTestSetup': ?iosTestSetup,
    'iosXcTest': ?iosXcTest,
    'testSetup': ?testSetup,
    'testTimeout': ?testTimeout,
  };
}