dispose method
Stops driving the session without detaching/closing it (on unmount).
Implementation
Future<void> dispose() {
unawaited(_input.close());
unawaited(_resize.close());
unawaited(_editor.close());
return _controller.dispose();
}
Stops driving the session without detaching/closing it (on unmount).
Future<void> dispose() {
unawaited(_input.close());
unawaited(_resize.close());
unawaited(_editor.close());
return _controller.dispose();
}