notifyValueChanged static method

void notifyValueChanged(
  1. OnBrnFormValueChanged? onValueChanged,
  2. BuildContext context,
  3. int oldVal,
  4. int newVal,
)

处理 数字值 变化

Implementation

static void notifyValueChanged(OnBrnFormValueChanged? onValueChanged,
    BuildContext context, int oldVal, int newVal) {
  if (onValueChanged != null) {
    onValueChanged(oldVal, newVal);
  }
}