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