suggestedActionSetPassword property

SuggestedActionSetPassword? suggestedActionSetPassword

Suggests the user to set a 2-step verification password to be able to log in again

Implementation

SuggestedActionSetPassword? get suggestedActionSetPassword {
  if (this is SuggestedActionSetPassword) {
    return this as SuggestedActionSetPassword;
  }
  return null;
}