beginsWith method
Validate that the value begins with prefix
Implementation
FormValidator beginsWith(String prefix, {String? message}) {
_addRule(FormRuleBeginsWith(prefix, message));
return this;
}
Validate that the value begins with prefix
FormValidator beginsWith(String prefix, {String? message}) {
_addRule(FormRuleBeginsWith(prefix, message));
return this;
}