logOut method

Future<void> logOut()

Removes the User's local credentials. This will also close any associated Sessions.

Implementation

Future<void> logOut() async {
  return await realmCore.userLogOut(this);
}