BashToolInput constructor

const BashToolInput({
  1. required String command,
  2. int? timeoutMs,
  3. String? description,
  4. bool runInBackground = false,
  5. bool dangerouslyDisableSandbox = false,
})

Implementation

const BashToolInput({
  required this.command,
  this.timeoutMs,
  this.description,
  this.runInBackground = false,
  this.dangerouslyDisableSandbox = false,
});