foregroundNotifications property
Emits notification payloads when received while the app is in the foreground.
Implementation
@override
Stream<Map<String, dynamic>> get foregroundNotifications {
_foregroundNotificationsStream ??= _foregroundNotificationsEventChannel
.receiveBroadcastStream()
.map<Map<String, dynamic>>((event) => Map<String, dynamic>.from(event));
return _foregroundNotificationsStream!;
}