loginHint property

String? loginHint

Implementation

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

Can be used to pre-fill the username/email address field of the sign-in page for the user, if you know the username/email address ahead of time.

Often apps use this parameter during re-authentication, having already extracted the username from a previous sign-in using the preferred_username claim.

Implementation

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