AnHttpMixin mixin
Methods
-
anHttp<T>(Param param, {HttpMethodType method = HttpMethodType.post, ProgressCallback? onSendProgress, ProgressCallback? onReceiveProgress, HttpRequestToken? cancelToken})
→ Future<Response<T>>
-
dio 原始返回类型 请求
-
anHttpArray<T>(Param param, {required JsonArrayConvertor<T> convertor, HttpMethodType method = HttpMethodType.post, ProgressCallback? onSendProgress, ProgressCallback? onReceiveProgress, HttpRequestToken? cancelToken})
→ Future<List<T>>
-
http请求, 用于返回值是数组的请求。
convert 数据类型转换器。
-
anHttpJson<T>(Param param, {required JsonObjectConvertor<T> convertor, HttpMethodType method = HttpMethodType.post, ProgressCallback? onSendProgress, ProgressCallback? onReceiveProgress, HttpRequestToken? cancelToken})
→ Future<T>
-
http请求, 用于返回值是Object的请求。
convert 数据类型转换器。
-
disposeRequestToken()
→ void
-
-
lifeCancelToken([HttpRequestToken? requestToken])
→ HttpRequestToken
-
-
noSuchMethod(Invocation invocation)
→ dynamic
-
Invoked when a nonexistent method or property is accessed.
inherited
-
toString()
→ String
-
A string representation of this object.
inherited