toJson method

Map<String, dynamic> toJson()

Implementation

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