sendCommand method
Sends the command to the server
Implementation
Future<SmtpResponse> sendCommand(SmtpCommand command) {
_currentCommand = command;
writeText(command.command, command);
return command.completer.future;
}
Sends the command to the server
Future<SmtpResponse> sendCommand(SmtpCommand command) {
_currentCommand = command;
writeText(command.command, command);
return command.completer.future;
}