extraScopesToConsent property

List<String>? extraScopesToConsent

Implementation

List<String>? get extraScopesToConsent =>
    jsDecodeList<String>(_jsObject.extraScopesToConsent);
void extraScopesToConsent=(List<String>? value)

Scopes for a different resource when the user needs consent upfront.

Implementation

set extraScopesToConsent(List<String>? value) =>
    _jsObject.extraScopesToConsent = jsEncode(value);