ShellCommandResult constructor

ShellCommandResult({
  1. required String stdout,
  2. required String stderr,
  3. required int status,
})

Implementation

ShellCommandResult({
  required this.stdout,
  required this.stderr,
  required this.status,
});