allObjectionsDropped method
A Future which will complete once there are no more raised objections on this Phase.
Implementation
Future<void> allObjectionsDropped() async {
while (_objections.isNotEmpty) {
final nextObjection = _objections.first;
await nextObjection.dropped;
_objections.remove(nextObjection);
}
}