decryptText static method
Decifra envelope com key fornecida externamente e retorna a string
original.
Lança CryptException se a autenticação falhar (modos AEAD) ou o ciphertext/padding for inválido (AES-CBC).
Implementation
static String decryptText(CryptEnvelope envelope, {required Uint8List key}) =>
utf8.decode(decryptBytes(envelope, key: key));