userUnBlockedMe property
Stream
get
userUnBlockedMe
A stream that emits events when a user unblocks the current user.
This stream listens for events indicating that a user has unblocked the current user on the platform. Each event contains information about the user who unblocked the current user. Use this stream to update your UI or perform actions upon being unblocked by a user.
Usage example:
Mirrorfly.userUnBlockedMe.listen((unblockEventData) {
// Handle the event when a user unblocks the current user
print("User unblocked me: $unblockEventData");
});
Implementation
static Stream<dynamic> get userUnBlockedMe =>
FlyChatFlutterPlatform.instance.userUnBlockedMe;