makeAllSecret method

void makeAllSecret(
  1. Iterable<String> keys
)

Mark all preferences as secret/confidential.

Implementation

void makeAllSecret(Iterable<String> keys) {
  _secretKeys.addAll(keys);
}