notifyConsumers static method
Implementation
static notifyConsumers(String name) {
for (_RxWidgetState state in _storeConsumers[name]!) {
if (state.mounted) {
state.setState(() {});
}
}
}
static notifyConsumers(String name) {
for (_RxWidgetState state in _storeConsumers[name]!) {
if (state.mounted) {
state.setState(() {});
}
}
}