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