unblockedThisUser property

Stream get unblockedThisUser

A stream that emits events when a user is unblocked.

This stream listens for events indicating that a user has been unblocked on the platform. Each event contains information about the user who was unblocked. Use this stream to update your UI or perform actions upon user unblocking.

Usage example:

Mirrorfly.unblockedThisUser.listen((unblockEventData) {
  // Handle the event when a user is unblocked
  print("User unblocked: $unblockEventData");
});

Implementation

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