AjaxRequest constructor

AjaxRequest({
  1. dynamic data,
  2. String? method,
  3. Uri? url,
  4. bool? isAsync,
  5. String? user,
  6. String? password,
  7. bool? withCredentials,
  8. AjaxRequestHeaders? headers,
  9. AjaxRequestReadyState? readyState,
  10. int? status,
  11. Uri? responseURL,
  12. String? responseType,
  13. dynamic response,
  14. String? responseText,
  15. String? responseXML,
  16. String? statusText,
  17. Map<String, dynamic>? responseHeaders,
  18. AjaxRequestEvent? event,
  19. AjaxRequestAction? action = AjaxRequestAction.PROCEED,
})

Implementation

AjaxRequest(
    {this.data,
    this.method,
    this.url,
    this.isAsync,
    this.user,
    this.password,
    this.withCredentials,
    this.headers,
    this.readyState,
    this.status,
    this.responseURL,
    this.responseType,
    this.response,
    this.responseText,
    this.responseXML,
    this.statusText,
    this.responseHeaders,
    this.event,
    this.action = AjaxRequestAction.PROCEED});