setValue method

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

Implementation

void setValue(T? value, {bool notify = true, bool forceNotify = false}) =>
    _parent.setValue(
      value,
      notify: notify,
      forceNotify: forceNotify,
    );