dispose method
void
dispose()
Dispose workers & streams
Implementation
void dispose() {
for (final s in _subscriptions) {
s.cancel();
}
onClose();
}
Dispose workers & streams
void dispose() {
for (final s in _subscriptions) {
s.cancel();
}
onClose();
}