ImportSshPublicKeyResponse.fromJson constructor

ImportSshPublicKeyResponse.fromJson(
  1. Map json_
)

Implementation

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