PendingDriver<SequenceItemType extends SequenceItem> constructor
Creates a new PendingDriver attached to sequencer.
Implementation
PendingDriver(
super.name,
super.parent, {
required super.sequencer,
this.timeout,
this.dropDelay,
this.enableEndOfTestEmptyCheck = true,
}) {
pendingSeqItems = _PendingQueue<SequenceItemType>(
parent: this,
timeout: timeout,
dropDelay: dropDelay,
);
}