toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final headers = this.headers;
  final httpMethod = this.httpMethod;
  final rawBody = this.rawBody;
  final url = this.url;
  return {
    'headers': ?headers,
    'httpMethod': ?httpMethod,
    'rawBody': ?rawBody,
    'url': ?url,
  };
}