notifyMultiChoiceStatusChanged static method

void notifyMultiChoiceStatusChanged(
  1. OnBrnFormMultiChoiceValueChanged? onChoiceChanged,
  2. BuildContext context,
  3. List<String> oldVal,
  4. List<String> newVal,
)

处理 多选选中状态变化

Implementation

static void notifyMultiChoiceStatusChanged(
  OnBrnFormMultiChoiceValueChanged? onChoiceChanged,
  BuildContext context,
  List<String> oldVal,
  List<String> newVal,
) {
  if (onChoiceChanged != null) {
    onChoiceChanged(oldVal, newVal);
  }
}