ShellLinesController constructor

ShellLinesController({
  1. Encoding? encoding,
})

Implementation

ShellLinesController({Encoding? encoding}) {
  this.encoding = encoding ?? shellContext.encoding;
  _controller = StreamController<List<int>>();
}