post<T> method

  1. @override
Future<Response> post<T>(
  1. String path,
  2. Map<String, dynamic> body,
  3. HttpOptions? options
)
override

Implementation

@override
Future<Response> post<T>(
    String path, Map<String, dynamic> body, HttpOptions? options) {
  return client.post<T>(path, body, options);
}