onModelChange method
Callback function for when the model changes, used to force a rebuild with setState()
Implementation
@override
onModelChange(WidgetModel model,{String? property, dynamic value})
{
try
{
var b = Binding.fromString(property);
if (widget.model.initialized && mounted && b?.property != 'busy') setState(() {});
}
catch(e)
{
Log().exception(e, caller: 'Framework.View');
}
}