String encryptText(String plainText) { try { return _encrypter.encrypt(plainText, iv: _iv).base16; } catch (_) { return ''; } }