decryptPrivateKey static method
Implementation
static Future<String> decryptPrivateKey(
String privateKeyEncrypted, String password) async {
var request = DecryptPrivateKeyRequest()
..privateKeyEncrypted = privateKeyEncrypted
..password = password;
return await _stringResponse("decryptPrivateKey", request.writeToBuffer());
}