BreakHook constructor

BreakHook([
  1. String message = 'Hook execution halted.',
  2. BreakReturnType returnType = BreakReturnType.none
])

Implementation

BreakHook([
  this.message = 'Hook execution halted.',
  this.returnType = BreakReturnType.none,
]);