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