call method
Implementation
Future<dynamic> call({
String? path,
required Method method,
Map<String, dynamic>? params,
Map<String, dynamic>? body,
Map<String, dynamic>? headers,
Map<int, Function> statusCodeHandlers = const {},
}) async {
return _api.call(
path: '$_endpoint$path',
method: method,
params: params,
body: body,
headers: headers,
statusCodeHandlers: statusCodeHandlers,
);
}