grantedScopes property

List<String>? get grantedScopes

A list of OAuth2 scopes granted to the extension.

Implementation

List<String>? get grantedScopes =>
    _wrapped.grantedScopes?.toDart.cast<String>().map((e) => e).toList();
set grantedScopes (List<String>? v)

Implementation

set grantedScopes(List<String>? v) {
  _wrapped.grantedScopes = v?.toJSArray((e) => e);
}