toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final actualOutputUrl = this.actualOutputUrl;
  final actualRedirectResponseCode = this.actualRedirectResponseCode;
  final actualService = this.actualService;
  final expectedOutputUrl = this.expectedOutputUrl;
  final expectedRedirectResponseCode = this.expectedRedirectResponseCode;
  final expectedService = this.expectedService;
  final headers = this.headers;
  final host = this.host;
  final path = this.path;
  return {
    'actualOutputUrl': ?actualOutputUrl,
    'actualRedirectResponseCode': ?actualRedirectResponseCode,
    'actualService': ?actualService,
    'expectedOutputUrl': ?expectedOutputUrl,
    'expectedRedirectResponseCode': ?expectedRedirectResponseCode,
    'expectedService': ?expectedService,
    'headers': ?headers,
    'host': ?host,
    'path': ?path,
  };
}