dio_firebase_performance_plus 0.4.0
dio_firebase_performance_plus: ^0.4.0 copied to clipboard
Send Dio requests performance data to Firebase.

Description #
Dio's Interceptor implementation that sends http request metric data to Firebase.
Required Dio in version at least 5.0.0.
It was forked from repo and all dependencies were updated to the latest version.
Usage #
final dio = Dio();
final performanceInterceptor = DioFirebasePerformanceInterceptor();
dio.interceptors.add(performanceInterceptor);
SUGGESTION: If you use dio client as a singleton you can use this interceptor as singleton as well.