CommandHook constructor

const CommandHook({
  1. required String command,
  2. String? shell,
  3. int? timeout,
  4. String? ifCondition,
})

Implementation

const CommandHook({
  required this.command,
  this.shell,
  this.timeout,
  this.ifCondition,
});