static String? maybeEncryptText(String? value, String password) { if (value == null) return null; return encryptText(value, password); }