DownloadDefaultKeyPairResult.fromJson constructor

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

Implementation

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