SpawnedProcess constructor

SpawnedProcess(
  1. {required int id,
  2. required String name,
  3. required int pid,
  4. required int startedAt,
  5. required List<String> arguments,
  6. required String workingDirectory}
)

Implementation

SpawnedProcess({
  required this.id,
  required this.name,
  required this.pid,
  required this.startedAt,
  required List<String> arguments,
  required this.workingDirectory,
}) : _arguments = arguments;