stopListening method

void stopListening()

Detach all subscriptions to cell streams - stop listening to changes

Implementation

void stopListening() {
  for (StreamSubscription sub in _cellStreamSubs) {
    sub.cancel();
  }
}