execute abstract method

Future<HttpResponse> execute({
  1. required String url,
  2. required HttpMethod method,
  3. Uint8List? body,
  4. Map<String, String>? headers,
})

Executes an HTTP request and returns the raw response

Implementation

Future<HttpResponse> execute({
  required String url,
  required HttpMethod method,
  Uint8List? body,
  Map<String, String>? headers,
});