hasScope method

bool hasScope(
  1. String? id
)

Implementation

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