Repository class

Constructors

Repository()

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

api String
getter/setter pair
requestFailedMessage String
getter/setter pair

Static Methods

delete(dynamic url, {Map<String, String>? headers, Map<String, String>? body, Encoding? encoding}) Future<Response>
get(dynamic url, {Map<String, String>? headers, Map<String, String>? body, Encoding? encoding}) Future<Response>
multiPart(dynamic url, {String method = 'POST', Map<String, String>? fields, List<MultipartFile>? files, Map<String, String>? headers}) Future<Response>
post(dynamic url, {Map<String, String>? headers, Map<String, String>? body, Encoding? encoding}) Future<Response>
put(dynamic url, {Map<String, String>? headers, Map<String, String>? body, Encoding? encoding}) Future<Response>