PendingAsyncHook constructor

PendingAsyncHook({
  1. required String processId,
  2. required String hookId,
  3. required String hookName,
  4. required String hookEvent,
  5. String? toolName,
  6. String? pluginId,
  7. required DateTime startTime,
  8. required int timeout,
  9. required String command,
  10. bool responseAttachmentSent = false,
})

Implementation

PendingAsyncHook({
  required this.processId,
  required this.hookId,
  required this.hookName,
  required this.hookEvent,
  this.toolName,
  this.pluginId,
  required this.startTime,
  required this.timeout,
  required this.command,
  this.responseAttachmentSent = false,
});