notifyMultiChoiceStatusChanged static method
void
notifyMultiChoiceStatusChanged(
- OnBrnFormMultiChoiceValueChanged? onChoiceChanged,
- BuildContext context,
- List<
String> oldVal, - List<
String> newVal,
处理 多选选中状态变化
Implementation
static void notifyMultiChoiceStatusChanged(
OnBrnFormMultiChoiceValueChanged? onChoiceChanged,
BuildContext context,
List<String> oldVal,
List<String> newVal,
) {
if (onChoiceChanged != null) {
onChoiceChanged(oldVal, newVal);
}
}