notifyActivities method
Initiates ActiveState when UI needs updating.
This process is handled by the package when an ActiveType is updated, and is not really required to be called when updating ActiveType.
Implementation
void notifyActivities(List<ActiveStateChanged> events) {
if (_stateController.isClosed) {
return;
}
_stateController.add(events);
}