prompt property

String? prompt

Implementation

String? get prompt => _jsObject.prompt;
void prompt=(String? value)

Indicates the type of user interaction that is required.

  • login: will force the user to enter their credentials on that request, negating single-sign on.

  • none: will ensure that the user isn't presented with any interactive prompt. if request can't be completed via single-sign on, the endpoint will return an interaction_required error.

  • consent: will the trigger the OAuth consent dialog after the user signs in, asking the user to grant permissions to the app.

  • select_account: will interrupt single sign-on providing account selection experience listing all the accounts in session or any remembered accounts or an option to choose to use a different account.

Implementation

set prompt(String? value) => _jsObject.prompt = value;