AesEncryption(String key, String iv) { _key = encrypt.Key(uint8ListFromBase64Key(key)); _iv = encrypt.IV(uint8ListFromBase64Key(iv)); _encrypter = encrypt.Encrypter(encrypt.AES(_key)); }