login method

Authenticates a user directly (without password check)

user The user to authenticate Returns authentication response

Implementation

Future<AuthResponse> login(Authenticatable user) async {
  return driver.generateTokens(user);
}