HookResult constructor

const HookResult({
  1. bool shouldContinue = true,
  2. String? output,
  3. String? stopReason,
  4. String? systemMessage,
})

Implementation

const HookResult({
  this.shouldContinue = true,
  this.output,
  this.stopReason,
  this.systemMessage,
});