onGroupNotificationMessage property

Stream get onGroupNotificationMessage

A stream that emits events related to group notifications.

This stream listens for group notification messages on the Mirrorfly platform. Each event contains the data of the group notification message. Use this stream to update your UI or perform actions upon receiving a group notification message.

Usage example:

Mirrorfly.onGroupNotificationMessage.listen((notificationData) {
  // Handle group notification messages
  print("Group notification message: $notificationData");
});

Implementation

static Stream<dynamic> get onGroupNotificationMessage =>
    FlyChatFlutterPlatform.instance.onGroupNotificationMessage;