ImportSshPublicKeyResponse.fromJson constructor

ImportSshPublicKeyResponse.fromJson(
  1. Map json_
)

Implementation

ImportSshPublicKeyResponse.fromJson(core.Map json_)
  : this(
      details: json_['details'] as core.String?,
      loginProfile:
          json_.containsKey('loginProfile')
              ? LoginProfile.fromJson(
                json_['loginProfile'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );