myProfileUpdated property
Stream
get
myProfileUpdated
A stream that emits events when the user's profile is updated.
This stream listens for events indicating that the user's profile has been updated on the Mirrorfly platform. Each event contains the updated data of the user's profile. Use this stream to refresh user profile information in your UI or perform other actions when a user's profile is updated.
Usage example:
Mirrorfly.myProfileUpdated.listen((profileData) {
// Handle the user profile update
print("My profile updated: $profileData");
});
Implementation
static Stream<dynamic> get myProfileUpdated =>
FlyChatFlutterPlatform.instance.myProfileUpdated;