userDeletedHisProfile property

Stream get userDeletedHisProfile

A stream that emits events when a user deletes his profile.

This stream listens for events indicating that a user has deleted their profile on the platform. Each event contains information about the user who deleted their profile. Use this stream to update your UI or perform actions upon user profile deletion.

Usage example:

Mirrorfly.userDeletedHisProfile.listen((deleteEventData) {
  // Handle the event when a user deletes their profile
  print("User deleted their profile: $deleteEventData");
});

Implementation

static Stream<dynamic> get userDeletedHisProfile =>
    FlyChatFlutterPlatform.instance.userDeletedHisProfile;