toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final additionalBindings = this.additionalBindings;
  final body = this.body;
  final custom = this.custom;
  final delete = this.delete;
  final get = this.get;
  final patch = this.patch;
  final post = this.post;
  final put = this.put;
  final responseBody = this.responseBody;
  final selector = this.selector;
  return {
    'additionalBindings': ?additionalBindings,
    'body': ?body,
    'custom': ?custom,
    'delete': ?delete,
    'get': ?get,
    'patch': ?patch,
    'post': ?post,
    'put': ?put,
    'responseBody': ?responseBody,
    'selector': ?selector,
  };
}