GhosttyTerminalShellLaunch constructor

const GhosttyTerminalShellLaunch({
  1. required String label,
  2. required String shell,
  3. List<String> arguments = const <String>[],
  4. Map<String, String>? environment,
  5. String? setupCommand,
})

Implementation

const GhosttyTerminalShellLaunch({
  required this.label,
  required this.shell,
  this.arguments = const <String>[],
  this.environment,
  this.setupCommand,
});