$ForwardSshTunnelConnectivity.fromJson constructor

$ForwardSshTunnelConnectivity.fromJson(
  1. Map json_
)

Implementation

$ForwardSshTunnelConnectivity.fromJson(core.Map json_)
    : this(
        hostname: json_['hostname'] as core.String?,
        password: json_['password'] as core.String?,
        port: json_['port'] as core.int?,
        privateKey: json_['privateKey'] as core.String?,
        username: json_['username'] as core.String?,
      );