removeUser method

Future<void> removeUser(
  1. User user
)

Removes a user and their local data from the device. If the user is logged in, they will be logged out in the process.

Implementation

Future<void> removeUser(User user) async {
  return await realmCore.removeUser(this, user);
}