logIn method
- Credentials credentials
Logs in a user with the given credentials.
Implementation
Future<User> logIn(Credentials credentials) async {
var userHandle = await realmCore.logIn(this, credentials);
return UserInternal.create(userHandle, this);
}