interactive property
bool?
get
interactive
Fetching a token may require the user to sign-in to Chrome, or
approve the application's requested scopes. If the interactive
flag is true
, getAuthToken
will
prompt the user as necessary. When the flag is
false
or omitted, getAuthToken
will
return failure any time a prompt would be required.
Implementation
bool? get interactive => _wrapped.interactive;
set
interactive
(bool? v)
Implementation
set interactive(bool? v) {
_wrapped.interactive = v;
}