send method
Implementation
Future<Response> send(
String method,
String route, {
Map<String, String> body = const {},
Map<String, String> headers = const {},
Map<String, String> queryParams = const {},
BuildContext? context,
}) async {
return await Requester(
url,
ssl,
method: method,
route: route,
body: body,
headers: headers,
queryParams: queryParams,
context: context,
).call();
}