fetch method
Future<Response>
fetch(
- String method,
- String path, {
- Map<
String, dynamic> ? query, - dynamic data,
- dynamic onReceiveProgress()?,
override
Sends a protected request using method to the specified path with optional parameters.
Implementation
@override
@protected
Future<Response> fetch(String method, String path,
{Map<String, dynamic>? query,
dynamic data,
Function(int, int)? onReceiveProgress}) async =>
Response();