start method
Implementation
@override
Future<void> start() 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, 'Starting Firebase Http Metric');
await kInstance?.start();
logger?.debug(this, 'Started Firebase Http Metric');
}