sendCommand<T> method

Future<T> sendCommand<T>(
  1. PopCommand<T> command
)

Sends the specified command to the remote POP server

Implementation

Future<T> sendCommand<T>(PopCommand<T> command) {
  _currentCommand = command;
  _currentFirstResponseLine = null;
  writeText(command.command, command);

  return command.completer.future;
}