withPollInterval method
Sets pollInterval on this strategy and on all child strategies.
Returns this.
Implementation
@override
WaitStrategy withPollInterval(Duration interval) {
super.withPollInterval(interval);
for (final s in strategies) {
s.withPollInterval(interval);
}
return this;
}