send<T> method

  1. @override
Future<Response<T>> send<T>(
  1. String method,
  2. String endpoint, {
  3. HttpRequestOption? option,
  4. Object? body,
})
override

Implementation

@override
Future<Response<T>> send<T>(String method, String endpoint,
    {HttpRequestOption? option, Object? body}) {
  return _request(method, endpoint, option, body);
}