RecordingEscalationHandler constructor
RecordingEscalationHandler({
- String id = 'fake-handler',
- EscalationDecision decision = const ParkAtGate('parked by the fake handler'),
- bool throwNext = false,
Creates the recorder; an escalation returns decision unless throwNext.
Implementation
RecordingEscalationHandler({
this.id = 'fake-handler',
this.decision = const ParkAtGate('parked by the fake handler'),
this.throwNext = false,
});