onLeftFromGroup property
Stream
get
onLeftFromGroup
A stream that emits events when a member leaves a group.
This stream listens for events indicating that a member has left a group on the Mirrorfly platform. Each event contains information about the group and the member who left. Use this stream to update your UI or perform actions upon the departure of a member from a group.
Usage example:
Mirrorfly.onLeftFromGroup.listen((leftData) {
// Handle the event when a member leaves a group
print("Member left from group: $leftData");
});
Implementation
static Stream<dynamic> get onLeftFromGroup =>
FlyChatFlutterPlatform.instance.onLeftFromGroup;