onMemberRemovedFromGroup property

Stream get onMemberRemovedFromGroup

A stream that emits events when a member is removed from a group.

This stream listens for events indicating that a member has been removed from a group on the Mirrorfly platform. Each event contains information about the group and the member who was removed. Use this stream to update your UI or perform actions upon the removal of a member from a group.

Usage example:

Mirrorfly.onMemberRemovedFromGroup.listen((memberRemovedData) {
  // Handle the removal of a member from the group
  print("Member removed from group: $memberRemovedData");
});

Implementation

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