onDeepLinking method
Implementation
@override
Future<void> onDeepLinking(Function(dynamic) callback) async {
if (GetIt.I.isRegistered<AppFlyerAnalyticsImpl>()) {
return GetIt.I<AppFlyerAnalyticsImpl>().onDeepLinking(callback);
} else {
debugPrint(
'onDeepLinking - AppFlyerAnalyticsImpl not registered inside GetIt.');
}
}