endsWith method
Validate that the value ends with suffix
Implementation
FormValidator endsWith(String suffix, {String? message}) {
_addRule(FormRuleEndsWith(suffix, message));
return this;
}
Validate that the value ends with suffix
FormValidator endsWith(String suffix, {String? message}) {
_addRule(FormRuleEndsWith(suffix, message));
return this;
}