setState method
void
setState(
- void callback()
Notifies the listeners.
Implementation
void setState(final void Function() callback) {
callback();
if (_isActive) _updateController.add(null);
}
Notifies the listeners.
void setState(final void Function() callback) {
callback();
if (_isActive) _updateController.add(null);
}