scopes property

List<String>? get scopes

A list of OAuth2 scopes to request.

When the scopes field is present, it overrides the list of scopes specified in manifest.json.

Implementation

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

Implementation

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