Api class

Constructors

Api()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

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

Static Properties

baseUri Uri
getter/setter pair
globalDataPath String?
getter/setter pair
globalErrorPath String?
getter/setter pair
headers Map<String, String>
getter/setter pair
onError ↔ (dynamic Function(String, String?)?)
getter/setter pair

Static Methods

get<T>(String endpoint, {Map<String, String>? args, List<MultipartFile>? files, String? method, String? dataPath, String? errorPath}) Future<ApiResponse<T>>
getList<T>(String endpoint, {Map<String, String>? args, String? method, String? dataPath, String? errorPath}) Future<ApiResponseList<T>>
getMap<K, V>(String endpoint, {Map<String, String>? args, String? method, String? dataPath, String? errorPath}) Future<ApiResponseMap<K, V>>
set(String endpoint, {Map<String, String>? args, List<MultipartFile>? files}) → dynamic