notifyRadioStatusChanged static method
void
notifyRadioStatusChanged(
- OnBrnFormRadioValueChanged? onTextChanged,
- BuildContext context,
- Object? oldVal,
- Object? newVal,
处理 单选选中状态变化
Implementation
static void notifyRadioStatusChanged(
OnBrnFormRadioValueChanged? onTextChanged,
BuildContext context,
Object? oldVal,
Object? newVal) {
if (onTextChanged != null) {
onTextChanged(oldVal as String?, newVal as String?);
}
}