notifyValueChanged static method
void
notifyValueChanged(
- OnBrnFormValueChanged? onValueChanged,
- BuildContext context,
- int oldVal,
- int newVal,
处理 数字值 变化
Implementation
static void notifyValueChanged(OnBrnFormValueChanged? onValueChanged,
BuildContext context, int oldVal, int newVal) {
if (onValueChanged != null) {
onValueChanged(oldVal, newVal);
}
}