ImportSshPublicKeyResponse.fromJson constructor
Implementation
factory ImportSshPublicKeyResponse.fromJson(Map<String, dynamic> json) {
return ImportSshPublicKeyResponse(
serverId: json['ServerId'] as String,
sshPublicKeyId: json['SshPublicKeyId'] as String,
userName: json['UserName'] as String,
);
}