hint method
Returns the label displayed as the input hint.
Implementation
String hint(BuildContext context, InputField field) {
final fieldName = title(context, field);
final lowercasedFieldName = fieldName.toLowerCase();
return AuthenticatorLocalizations.inputsOf(
context,
).promptFill(lowercasedFieldName);
}