onUpdate method

  1. @override
void onUpdate()
override

Callback when control is asked to update its value.

Allows controls to calculate their value. For example control groups to calculate its value based on their children.

Implementation

@override
void onUpdate() {
  _value = _reduceValue();
}