stop method

Future<void> stop()

Implementation

Future<void> stop() {
  _isStarted = false;
  return _controller?.stop() ?? Future.value();
}