tryDecryptHex static method

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

Implementation

static String? tryDecryptHex(String? value, String password) {
  if (value == null) return null;
  return decryptHex(value, password);
}