CommandHook constructor

const CommandHook({
  1. required String command,
  2. String? shell,
  3. String? condition,
  4. int? timeoutSeconds,
  5. bool async_ = false,
  6. bool once = false,
})

Implementation

const CommandHook({
  required this.command,
  this.shell,
  super.condition,
  super.timeoutSeconds,
  super.async_,
  super.once,
});