stop method

Future<void> stop()

Stop the stdio bridge.

Implementation

Future<void> stop() async {
  await _stdinSubscription?.cancel();
  await bridge.dispose();
}