HookStepResult constructor

const HookStepResult({
  1. required String stepName,
  2. required bool passed,
  3. bool skipped = false,
  4. bool warned = false,
  5. required Duration duration,
  6. String? note,
})

Implementation

const HookStepResult({
  required this.stepName,
  required this.passed,
  this.skipped = false,
  this.warned = false,
  required this.duration,
  this.note,
});