onAdminBlockedOtherUser property

Stream get onAdminBlockedOtherUser

A stream that emits events when an admin blocks another user.

This stream listens for events indicating that an admin has blocked another user on the platform. Each event contains information about the admin and 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.onAdminBlockedOtherUser.listen((blockEventData) {
  // Handle the event when an admin blocks another user
  print("Admin blocked another user: $blockEventData");
});

Implementation

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