interactive property
bool?
get
interactive
Whether to launch auth flow in interactive mode.
Since some auth flows may immediately redirect to a result URL,
launchWebAuthFlow hides its web view until the first
navigation either redirects to the final URL, or finishes loading a page
meant to be displayed.
If the interactive flag is true, the window
will be displayed when a page load completes. If the flag is
false or omitted, launchWebAuthFlow will return
with an error if the initial navigation does not complete the flow.
For flows that use JavaScript for redirection,
abortOnLoadForNonInteractive can be set to false
in combination with setting timeoutMsForNonInteractive to give
the page a chance to perform any redirects.
Implementation
bool? get interactive => _wrapped.interactive;
set
interactive
(bool? v)
Implementation
set interactive(bool? v) {
_wrapped.interactive = v;
}