lowercase method

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

Validate that the value is lowercase

Implementation

FormValidator lowercase({String? message}) {
  _addRule(FormRuleLowercase(message: message));
  return this;
}