suggestedActionCheckPassword property

SuggestedActionCheckPassword? suggestedActionCheckPassword

Suggests the user to check whether they still remember their 2-step verification password

Implementation

SuggestedActionCheckPassword? get suggestedActionCheckPassword {
  if (this is SuggestedActionCheckPassword) {
    return this as SuggestedActionCheckPassword;
  }
  return null;
}