sendCommand<T> method
Implementation
Future<T> sendCommand<T>(PopCommand<T> command) {
_currentCommand = command;
_currentFirstResponseLine = null;
writeText(command.command, command);
return command.completer.future;
}
Future<T> sendCommand<T>(PopCommand<T> command) {
_currentCommand = command;
_currentFirstResponseLine = null;
writeText(command.command, command);
return command.completer.future;
}