HookEndEvent constructor

const HookEndEvent({
  1. required String id,
  2. required String timestamp,
  3. String? parentId,
  4. bool ephemeral = false,
  5. required String hookInvocationId,
  6. required String hookType,
  7. dynamic output,
  8. required bool success,
  9. Map<String, dynamic>? error,
})

Implementation

const HookEndEvent({
  required super.id,
  required super.timestamp,
  super.parentId,
  super.ephemeral,
  required this.hookInvocationId,
  required this.hookType,
  this.output,
  required this.success,
  this.error,
}) : super(type: 'hook.end');