httpFormRequest abstract method

void httpFormRequest(
  1. String method,
  2. String? url, [
  3. Map? data,
  4. Map<String, String>? headers,
])

Processes the HTTP POST(Form)request returning the server's response as a JSON Object

Implementation

void httpFormRequest(String method, String? url,
    [Map<dynamic, dynamic>? data, Map<String, String>? headers]);