decryptToUtf8 method
Implementation
String decryptToUtf8(/* String | Uint8List */ input) {
final bytes = decrypt(input);
return utf8.decode(bytes.toList());
}
String decryptToUtf8(/* String | Uint8List */ input) {
final bytes = decrypt(input);
return utf8.decode(bytes.toList());
}