sendShell method

Future<bool> sendShell()

Implementation

Future<bool> sendShell() async {
  sendMessage(
    SSH_Message_Channel_Request.shell(
      recipientChannel: remoteId,
      wantReply: true,
    ),
  );
  return await _requestReplyQueue.next;
}