StreamOutput constructor
StreamOutput()
Implementation
StreamOutput() {
_controller = StreamController<List<String>>(
onListen: () => _shouldForward = true,
onPause: () => _shouldForward = false,
onResume: () => _shouldForward = true,
onCancel: () => _shouldForward = false,
);
}