ImportSshPublicKeyResponse.fromJson constructor
ImportSshPublicKeyResponse.fromJson(
- 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,
);