hasScope method

bool hasScope(
  1. String? id
)

Implementation

bool hasScope(String? id)
{
  if (id == null) return false;
  return _directory.containsKey(id);
}