scopes property

Future<Set<Scope>?> scopes

Returns the scopes associated with an authenticated user.

Implementation

Future<Set<Scope>?> get scopes async {
  if (!_initialized) await _initialize();
  return _scopes;
}