sendExec method

Future<bool> sendExec(
  1. String command
)

Implementation

Future<bool> sendExec(String command) async {
  sendMessage(
    SSH_Message_Channel_Request.exec(
      recipientChannel: remoteId,
      wantReply: true,
      command: command,
    ),
  );
  return await _requestReplyQueue.next;
}