isExactly method

bool isExactly(
  1. String scopeString
)

String variant of isExactlyScope.

Parses an instance of this type from scopeString and invokes isExactlyScope.

Implementation

bool isExactly(String scopeString) {
  return isExactlyScope(AuthScope(scopeString));
}