StdinService constructor
StdinService({
- bool mock = false,
- StdoutService? informStdout,
- dynamic isTest,
The default and only constructor where you can optionally indicate
whether you want mock
stdin and informStdout
Implementation
StdinService({this.mock = false, this.informStdout, isTest}) {
if (isTest != null && isTest) {
_isTest = true;
}
}