loadRequest method
Implementation
Future<void> loadRequest(Uri uri,
{LoadRequestMethod method = LoadRequestMethod.get,
Map<String, String> headers = const <String, String>{},
Uint8List? body}) {
return loadRequest_(uri.toString(),
method: method, headers: headers, body: body);
}