onAdminBlockedUser property
Stream
get
onAdminBlockedUser
A stream that emits events when a user is blocked by an admin.
This stream listens for events indicating that an admin has blocked a user on the platform. Each event contains information about the user who was blocked. Use this stream to update your UI or perform actions upon the blocking of a user by an admin.
Usage example:
Mirrorfly.onAdminBlockedUser.listen((blockEventData) {
// Handle the event when a user is blocked by an admin
print("User blocked by admin: $blockEventData");
});
Implementation
static Stream<dynamic> get onAdminBlockedUser =>
FlyChatFlutterPlatform.instance.onAdminBlockedUser;