File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -258,7 +258,7 @@ class RegexTextInputValidatorModel extends ConfigurableTextInputValidatorModel {
258258 );
259259
260260 /// Allow only alphabets and digits in the text field.
261- static const RegexTextInputValidatorModel alphanumeric =
261+ static const RegexTextInputValidatorModel alphaNumeric =
262262 RegexTextInputValidatorModel (
263263 name: 'Alphanumeric' ,
264264 pattern: r'^[a-zA-Z0-9]+$' ,
@@ -285,7 +285,7 @@ class RegexTextInputValidatorModel extends ConfigurableTextInputValidatorModel {
285285 static const List <RegexTextInputValidatorModel > defaultValidators = [
286286 RegexTextInputValidatorModel .digitsOnly,
287287 RegexTextInputValidatorModel .alphabetsOnly,
288- RegexTextInputValidatorModel .alphanumeric ,
288+ RegexTextInputValidatorModel .alphaNumeric ,
289289 RegexTextInputValidatorModel .email,
290290 RegexTextInputValidatorModel .custom,
291291 ];
You can’t perform that action at this time.
0 commit comments