form_builder_validators
form_builder_validators copied to clipboard
add notMatch to FormFieldValidator
scenario: require password not to contain whitespace, etc
Connection with issue(s)
Close #???
Connected to #???
Solution description
Screenshots or Videos
To Do
- [ ] Read contributing guide
- [ ] Check the original issue to confirm it is fully satisfied
- [ ] Add solution description to help guide reviewers
- [ ] Add unit test to verify new or fixed behaviour
- [ ] If apply, add documentation to code properties and package readme
// example: require password not to contain whitespace
FormBuilderValidators.notMatch(r'\s', errorText: 'cannot contain whitespace')
Replace by #58