RunInTerminalRequestArguments constructor

RunInTerminalRequestArguments({
  1. required List<String> args,
  2. bool? argsCanBeInterpretedByShell,
  3. required String cwd,
  4. Map<String, Object?>? env,
  5. String? kind,
  6. String? title,
})

Implementation

RunInTerminalRequestArguments({
  required this.args,
  this.argsCanBeInterpretedByShell,
  required this.cwd,
  this.env,
  this.kind,
  this.title,
});