cryptoSecretBoxOpenEasy method
Implementation
@override
Future<String> cryptoSecretBoxOpenEasy(
String ciphertext,
String nonce,
String key,
) async {
final data = await methodChannel.invokeMethod<String>(
secretBoxOpenEasyMethod,
<String, dynamic>{
'ciphertext': ciphertext,
'nonce': nonce,
'key': key,
},
);
return data ?? '';
}