sendCommand<T> method
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;
}