SyncTransformer class
The default Transformer for Dio.
If you want to custom the transformation of request/response data,
you can provide a Transformer by your self, and replace
the DefaultTransformer by setting the dio.transformer
.
- Inheritance
-
- Object
- Transformer
- SyncTransformer
- Implementers
Constructors
- SyncTransformer({JsonDecodeCallback jsonDecodeCallback = jsonDecode, JsonEncodeCallback jsonEncodeCallback = jsonEncode})
Properties
- hashCode → int
-
The hash code for this object.
read-onlyinherited
- jsonDecodeCallback ↔ JsonDecodeCallback
-
read / write
- jsonEncodeCallback ↔ JsonEncodeCallback
-
read / write
- runtimeType → Type
-
A representation of the runtime type of the object.
read-onlyinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
-
transformRequest(
RequestOptions options) → Future< String> -
transformRequest allows changes to the request data before it is
sent to the server, but after the
RequestInterceptor
.override -
transformResponse(
RequestOptions options, ResponseBody response) → Future -
As an agreement, we return the
response
when the Options.responseType is ResponseType.stream.override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited