v1GetPrivateKeyResponse.fromJson constructor
Implementation
factory v1GetPrivateKeyResponse.fromJson(Map<String, dynamic> json) {
final _privateKey = v1PrivateKey.fromJson(json['privateKey'] as Map<String, dynamic>);
return v1GetPrivateKeyResponse(
privateKey: _privateKey,
);
}