flipper_util 0.0.2 flipper_util: ^0.0.2 copied to clipboard
flutter plugin for flipperUtil
flipper_util #
flutter plugin for flipperUtil
- Dio interceptor : report http info to flipper client in android
Getting Started #
dio interceptor #
Dio dio = Dio();
//add the FlipperKitDioInterceptor as the last interceptor
dio.interceptors.add(FlipperKitDioInterceptor(topRouter: (){
//return the top router name ,it will display in request headers
return "page/topTest";
}))