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