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";
}))