portForwardL method

Future<String?> portForwardL(
  1. int rport,
  2. int lport,
  3. String rhost
)

Forward a port from the remote to the local host.

Implementation

Future<String?> portForwardL(int rport, int lport, String rhost) async {
  var result = await _channel.invokeMethod('portForwardL',
      {"id": id, "rhost": rhost, "rport": rport, "lport": lport});
  return result;
}