setValue method

  1. @override
void setValue(
  1. String? value, {
  2. bool notify = true,
  3. bool forceNotify = false,
})
override

Implementation

@override
void setValue(String? value, {bool notify = true, bool forceNotify = false}) {
  if (requestValidation) {
    setWithRegex(value, notify: notify, forceNotify: forceNotify);
  } else {
    super.setValue(value, notify: notify, forceNotify: forceNotify);
  }
}