BashCommandHook constructor

const BashCommandHook({
  1. required String command,
  2. String shell = 'bash',
  3. bool async = false,
  4. String? ifFilter,
  5. int? timeout,
  6. String? statusMessage,
  7. bool once = false,
})

Implementation

const BashCommandHook({
  required this.command,
  this.shell = 'bash',
  this.async = false,
  this.ifFilter,
  this.timeout,
  this.statusMessage,
  this.once = false,
});