ClientIO class

Constructors

ClientIO({String endPoint = 'https://HOSTNAME/v1', bool selfSigned = false})

Properties

config Map<String, String>
getter/setter pairoverride
cookieJar → CookieJar
no setter
endPoint String
no setteroverride
endPointRealtime String?
no setteroverride
hashCode int
The hash code for this object.
no setterinherited
initialized bool
no setter
initProgress bool
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
selfSigned bool
getter/setter pair

Methods

addHeader(String key, String value) ClientIO
call(HttpMethod method, {String path = '', Map<String, String> headers = const {}, Map<String, dynamic> params = const {}, ResponseType? responseType}) Future<Response>
chunkedUpload({required String path, required Map<String, dynamic> params, required String paramName, required String idParamName, required Map<String, String> headers, dynamic onProgress(UploadProgress)?}) Future<Response>
override
init() Future
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
prepareRequest(HttpMethod method, {required Uri uri, required Map<String, String> headers, required Map<String, dynamic> params}) → BaseRequest
inherited
prepareResponse(Response res, {ResponseType? responseType}) Response
inherited
setEndpoint(String endPoint) ClientIO
setEndPointRealtime(String endPoint) ClientIO
setJWT(dynamic value) ClientIO
Your secret JSON Web Token
setLocale(dynamic value) ClientIO
setProject(dynamic value) ClientIO
Your project ID
setSelfSigned({bool status = true}) ClientIO
toResponse(StreamedResponse streamedResponse) Future<Response>
inherited
toString() String
A string representation of this object.
inherited
webAuth(Uri url, {String? callbackUrlScheme}) Future
override

Operators

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

Constants

CHUNK_SIZE → const int