Ensures the value starts with a specific prefix.
Validator startsWith(String prefix, {String? message}) { _rules.add(StartsWithRule(prefix, message ?? _messages.startsWith)); return this; }