bool isSubsetOrEqualTo(AuthScope scope)

Whether or not this instance is a subset or equal to scope.

The scope users:posts is a subset of users.

Source

bool isSubsetOrEqualTo(AuthScope scope) {
  return allowsScope(scope);
}