post<T> method
Handy method to make http POST request, which is a alias of dio.fetch(RequestOptions).
Implementation
@override
Future<Response<T>> post<T>(String path, {data, Map<String, dynamic>? queryParameters, Options? options, CancelToken? cancelToken, onSendProgress, onReceiveProgress}) {
Future<Response<T>> tmp = super.post(path, data: data, queryParameters: queryParameters, options: options, cancelToken: cancelToken, onSendProgress: onSendProgress, onReceiveProgress: onReceiveProgress);
tmp.then(this.rewriteHandler)
.catchError(this.errorHandler);
return tmp;
}