onGroupProfileUpdated property

Stream get onGroupProfileUpdated

A stream that emits events when a group profile is updated.

This stream listens for events indicating that a group profile has been updated on the Mirrorfly platform. Each event contains the updated data of the group profile. Use this stream to refresh group profile information in your UI or perform other actions when a group profile is updated.

Usage example:

Mirrorfly.onGroupProfileUpdated.listen((updatedGroupProfile) {
  // Handle the group profile update
  print("Group profile updated: $updatedGroupProfile");
});

Implementation

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