allObjectionsDropped method
Implementation
Future<void> allObjectionsDropped() async {
while (_objections.isNotEmpty) {
final nextObjection = _objections.first;
await nextObjection.dropped;
_objections.remove(nextObjection);
}
}
Future<void> allObjectionsDropped() async {
while (_objections.isNotEmpty) {
final nextObjection = _objections.first;
await nextObjection.dropped;
_objections.remove(nextObjection);
}
}