isSecret method

bool isSecret(
  1. String key
)

Is this preference a secret value?

Implementation

bool isSecret(String key) {
  return _secretKeys.contains(key);
}