booleanTrue method

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

Validate a value is a boolean

Implementation

FormValidator booleanTrue({String? message}) {
  _addRule(FormRuleBooleanTrue(message: message));
  return this;
}