dispose method
void
dispose()
Clean up the manager resources.
Implementation
void dispose() {
closeAllSubscriptions();
for (final timer in _cleanupTimers.values) {
timer.cancel();
}
_cleanupTimers.clear();
}
Clean up the manager resources.
void dispose() {
closeAllSubscriptions();
for (final timer in _cleanupTimers.values) {
timer.cancel();
}
_cleanupTimers.clear();
}