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