toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (faultJSONPaths != null) 'faultJSONPaths': faultJSONPaths!,
      if (faultXPaths != null) 'faultXPaths': faultXPaths!,
      if (name != null) 'name': name!,
      if (namespaces != null) 'namespaces': namespaces!,
      if (requestJSONPaths != null) 'requestJSONPaths': requestJSONPaths!,
      if (requestXPaths != null) 'requestXPaths': requestXPaths!,
      if (responseJSONPaths != null) 'responseJSONPaths': responseJSONPaths!,
      if (responseXPaths != null) 'responseXPaths': responseXPaths!,
      if (variables != null) 'variables': variables!,
    };