initialize method
Implementation
@override
Future<void> initialize(
BuildContext context, {
IFastErrorReporter? errorReporter,
}) async {
if (isMacOS) return;
_logger.debug('Initializing...');
final performance = FirebasePerformance.instance;
await performance.setPerformanceCollectionEnabled(true);
_logger.debug('Initialized');
}