HttpActionExample class

Implemented types
Mixed-in types

Properties

hashCode int
The hash code for this object.
no setterinherited
interceptorsWrapper InterceptorsWrapper?
getter/setter pairinherited
options HttpBaseOptions?
getter/setter pairinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

delete(String path, {Object? data, Map<String, dynamic>? queryParameters, Map<String, String>? header}) Future<HttpBaseResponse>
inherited
download(String url, {required dynamic onDownloadProgress(int totalBytes, int receivedBytes), required dynamic onDownloadDone(List<int> totalBytes)}) Future<void>
inherited
get(String path, {Map<String, dynamic>? queryParameters, Map<String, String>? header}) Future<HttpBaseResponse>
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
patch(String path, {Object? data, Map<String, dynamic>? queryParameters, Map<String, String>? header}) Future<HttpBaseResponse>
inherited
post(String path, {Object? data, Map<String, dynamic>? queryParameters, Map<String, String>? header}) Future<HttpBaseResponse>
inherited
put(String path, {Object? data, Map<String, dynamic>? queryParameters, Map<String, String>? header}) Future<HttpBaseResponse>
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

getInstance() HttpActions