onGroupDeletedLocally property
Stream
get
onGroupDeletedLocally
A stream that emits events when a group is deleted locally.
This stream listens for events indicating that a group has been deleted locally on the Mirrorfly platform. Use this stream to update your UI or perform actions upon the local deletion of a group.
Usage example:
Mirrorfly.onGroupDeletedLocally.listen((groupData) {
// Handle the local deletion of a group
print("Group deleted locally: $groupData");
});
Implementation
static Stream<dynamic> get onGroupDeletedLocally =>
FlyChatFlutterPlatform.instance.onGroupDeletedLocally;