onSuperAdminDeleteGroup property
Stream
get
onSuperAdminDeleteGroup
A stream that emits an event when a super admin deletes a group.
This stream listens for super‐admin group deletion events. Whenever a super admin permanently removes a group, an event is emitted detailing which group was deleted and group name. You can use this to update your UI, clean up local caches, or notify other participants that the group no longer exists.
Usage example:
Mirrorfly.onSuperAdminDeleteGroup.listen((event) {
final String groupJid = event['groupJid'] as String;
final String groupName = event['groupName'] as String;
});
Implementation
static Stream<dynamic> get onSuperAdminDeleteGroup =>
FlyChatFlutterPlatform.instance.onSuperAdminDeleteGroup;