closeListen method

void closeListen()

turn off listening

Implementation

void closeListen() {
  if (_stream != null) {
    _stream!.cancel();
    _stream = null;
  }
}