DownloadDefaultKeyPairResult.fromJson constructor
Implementation
factory DownloadDefaultKeyPairResult.fromJson(Map<String, dynamic> json) {
return DownloadDefaultKeyPairResult(
privateKeyBase64: json['privateKeyBase64'] as String?,
publicKeyBase64: json['publicKeyBase64'] as String?,
);
}