ProcessView constructor

const ProcessView({
  1. required String title,
  2. required String executable,
  3. required List<String> args,
  4. String? workingDirectory,
  5. Key? key,
})

Implementation

const ProcessView({
  required this.title,
  required this.executable,
  required this.args,
  this.workingDirectory,
  super.key,
});