postRx<T> method

Stream<T> postRx<T>(
  1. String path, {
  2. dynamic data,
  3. Options? options,
  4. bool? needToken,
  5. bool? wsApi,
  6. bool? openCache,
  7. bool? useFormData,
  8. Map<String, dynamic>? queryParameters,
  9. CancelToken? cancelToken,
  10. ProgressCallback? onSendProgress,
  11. ProgressCallback? onReceiveProgress,
})

Implementation

Stream<T> postRx<T>(String path,
        {data,
        Options? options,
        bool? needToken,
        bool? wsApi,
        bool? openCache,
        bool? useFormData,
        Map<String, dynamic>? queryParameters,
        CancelToken? cancelToken,
        ProgressCallback? onSendProgress,
        ProgressCallback? onReceiveProgress}) =>
    requestWrap<T>(path,
            options: DioMixin.checkOptions('POST', options),
            data: data,
            queryParameters: queryParameters,
            needToken: needToken,
            wsApi: wsApi,
            useFormData: useFormData,
            openCache: openCache,
            onSendProgress: onSendProgress,
            onReceiveProgress: onReceiveProgress)
        .asStream();