HookProgressEvent constructor

const HookProgressEvent({
  1. required String hookId,
  2. required String hookName,
  3. required String hookEvent,
  4. required String stdout,
  5. required String stderr,
  6. required String output,
})

Implementation

const HookProgressEvent({
  required this.hookId,
  required this.hookName,
  required this.hookEvent,
  required this.stdout,
  required this.stderr,
  required this.output,
});