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.
minWordsCount
1 parent 0487cce commit c25ef36Copy full SHA for c25ef36
lib/src/form_builder_validators.dart
@@ -183,12 +183,8 @@ class FormBuilderValidators {
183
return (valueCandidate) {
184
int valueWordsCount = 0;
185
186
- if (valueCandidate != null) {
187
- if (valueCandidate.trim().isEmpty) {
188
- valueWordsCount = 0;
189
- } else {
190
- valueWordsCount = valueCandidate.trim().split(' ').length;
191
- }
+ if (valueCandidate != null && valueCandidate.trim().isNotEmpty) {
+ valueWordsCount = valueCandidate.trim().split(' ').length;
192
}
193
194
return valueWordsCount < minCount && (!allowEmpty || valueWordsCount > 0)
0 commit comments