We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55eee98 commit 5b4a7a7Copy full SHA for 5b4a7a7
lib/src/form_builder_validators.dart
@@ -57,7 +57,8 @@ class FormBuilderValidators {
57
String errorText,
58
}) =>
59
(valueCandidate) => valueCandidate == value
60
- ? errorText ?? FormBuilderLocalizations.of(context).notEqualErrorText(value)
+ ? errorText ??
61
+ FormBuilderLocalizations.of(context).notEqualErrorText(value)
62
: null;
63
64
/// [FormFieldValidator] that requires the field's value to be greater than
0 commit comments