toMap method

Map<String, dynamic> toMap()

Implementation

Map<String, dynamic> toMap() {
  return {
    "data": data,
    "method": method,
    "url": url?.toString(),
    "isAsync": isAsync,
    "user": user,
    "password": password,
    "withCredentials": withCredentials,
    "headers": headers?.toMap(),
    "readyState": readyState?.toValue(),
    "status": status,
    "responseURL": responseURL?.toString(),
    "responseType": responseType,
    "response": response,
    "responseText": responseText,
    "responseXML": responseXML,
    "statusText": statusText,
    "responseHeaders": responseHeaders,
    "action": action?.toValue()
  };
}