SshAuthenticationConfig.fromJson constructor

SshAuthenticationConfig.fromJson(
  1. Map json_
)

Implementation

SshAuthenticationConfig.fromJson(core.Map json_)
  : this(
      hostPublicKey: json_['hostPublicKey'] as core.String?,
      userPrivateKeySecretVersion:
          json_['userPrivateKeySecretVersion'] as core.String?,
    );