onNotification method
Implementation
@override
void onNotification(Map<String, dynamic> data) {
log('onNotification: $data');
final featureProviders =
appProviders.whereType<PushNotificationServiceProviderMixin>();
for (final featureProvider in featureProviders) {
featureProvider.handlePushNotification(data);
}
}