EscalationRequest constructor

const EscalationRequest({
  1. required String beadId,
  2. required String sessionId,
  3. required String nodePath,
  4. required String reason,
  5. required int rewindCount,
})

Bundles the work beadId, the OWN sessionId, the escalating nodePath, the route's reason, and the node's spent rewindCount.

Implementation

const EscalationRequest({
  required this.beadId,
  required this.sessionId,
  required this.nodePath,
  required this.reason,
  required this.rewindCount,
});