masterKeyOnly method

bool masterKeyOnly(
  1. String key
)

Check if a key is only accessed using masterKey only

Returns true if only accessed using masterKey only

Implementation

bool masterKeyOnly(String key) {
  return _masterKeyOnly.containsKey(key) ? _masterKeyOnly[key] : false;
}