dio_flutter_transformer 3.0.2 copy "dio_flutter_transformer: ^3.0.2" to clipboard
dio_flutter_transformer: ^3.0.2 copied to clipboard

discontinuedreplaced by: dio

A dio transformer espically for flutter, by which the json decoding will be in background with [compute] function in flutter sdk.

example/example.dart

import 'package:dio/dio.dart';
import '../lib/dio_flutter_transformer.dart';

main() async {
    var dio = Dio();
    // replace dio default transformer
    dio.transformer = new FlutterTransformer();

    //....
    Response response =
        await dio.get("https://api.github.com/orgs/flutterchina/repos");
    print(response.data);
}
20
likes
30
pub points
74%
popularity

Publisher

verified publisherflutterchina.club

A dio transformer espically for flutter, by which the json decoding will be in background with [compute] function in flutter sdk.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

dio, flutter

More

Packages that depend on dio_flutter_transformer