foregroundNotifications property

  1. @override
Stream<Map<String, dynamic>> get foregroundNotifications
override

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!;
}