Encrypts the value using the Fernet encryption algorithm.
Returns a Future that completes with the encrypted value as a Base64-encoded string.
get encrypt async { var encryptedVal = await fernetEncrypt(encryptionKey, value); return encryptedVal; }