httpFormDataRequest method
void
httpFormDataRequest(])
override
Processes the HTTP POST(Form Multi Part) request, returning the server's response via the completion callback.
Implementation
@override
void httpFormDataRequest(
String method,
String? url, [
dynamic formData,
Map<String, String>? headers,
]) {
// Query CMIS over HTTP
HttpRequest.request(
url!,
method: method,
withCredentials: false,
responseType: null,
requestHeaders: headers,
sendData: formData,
)
..then(onSuccess)
..catchError(onError)
..whenComplete(completion);
}