request<T> abstract method
Future<Result<T> >
request<T>(
- String path, {
- required HttpMethod method,
- Object? body,
- Map<
String, dynamic> ? queryParameters, - JsonParser<
T> ? parser, - RequestOptions? options,
Sends a generic HTTP request. Core verbs delegate to this method.
Implementation
Future<Result<T>> request<T>(
String path, {
required HttpMethod method,
Object? body,
Map<String, dynamic>? queryParameters,
JsonParser<T>? parser,
RequestOptions? options,
});