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