removeSyncedState static method
Remove synced state
Implementation
static void removeSyncedState(String channel) {
final state = _syncedStates[channel];
state?.dispose();
_syncedStates.remove(channel);
}
Remove synced state
static void removeSyncedState(String channel) {
final state = _syncedStates[channel];
state?.dispose();
_syncedStates.remove(channel);
}