toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final faultJSONPaths = this.faultJSONPaths;
  final faultXPaths = this.faultXPaths;
  final name = this.name;
  final namespaces = this.namespaces;
  final requestJSONPaths = this.requestJSONPaths;
  final requestXPaths = this.requestXPaths;
  final responseJSONPaths = this.responseJSONPaths;
  final responseXPaths = this.responseXPaths;
  final variables = this.variables;
  return {
    'faultJSONPaths': ?faultJSONPaths,
    'faultXPaths': ?faultXPaths,
    'name': ?name,
    'namespaces': ?namespaces,
    'requestJSONPaths': ?requestJSONPaths,
    'requestXPaths': ?requestXPaths,
    'responseJSONPaths': ?responseJSONPaths,
    'responseXPaths': ?responseXPaths,
    'variables': ?variables,
  };
}