uppercase method

FormValidator uppercase({
  1. String? message,
})

Validate that the value is uppercase

Implementation

FormValidator uppercase({String? message}) {
  _addRule(FormRuleUppercase(message: message));
  return this;
}