scopes property

List<String>? scopes

Implementation

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

List of scopes the application is requesting access to (optional for ssoSilent calls).

Implementation

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