maybeEncryptText static method

String? maybeEncryptText(
  1. String? value,
  2. String password
)

Implementation

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