postUri<T> abstract method
Future<Response<T> >
postUri<T>(
- Uri uri, {
- dynamic data,
- Options? options,
- CancelToken? cancelToken,
- ProgressCallback? onSendProgress,
- ProgressCallback? onReceiveProgress,
Handy method to make http POST request, which is a alias of dio.fetch(RequestOptions)
.
Implementation
Future<Response<T>> postUri<T>(
Uri uri, {
data,
Options? options,
CancelToken? cancelToken,
ProgressCallback? onSendProgress,
ProgressCallback? onReceiveProgress,
});