stop method
Implementation
@override
Future<void> stop() async {
if (!kCanTrace) {
logger?.debug(this, 'Firebase Http Metric is not allowed to trace');
return;
}
if (kInstance == null) {
logger?.error(this, 'Firebase Http Metric is not initialized');
return;
}
logger?.debug(this, 'Stopping Firebase Http Metric');
await kInstance?.stop();
logger?.debug(this, 'Stopped Firebase Http Metric');
}