ImportSshPublicKeyResponse.fromJson constructor

ImportSshPublicKeyResponse.fromJson(
  1. Map<String, dynamic> json
)

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,
  );
}