loginWithApop method

Future<void> loginWithApop(
  1. String name,
  2. String password
)

Logs the user in with the APOP command.

Implementation

Future<void> loginWithApop(String name, String password) async {
  await sendCommand(PopApopCommand(name, password, serverInfo.timestamp));
  isLoggedIn = true;
}