reconcile method
Requests an explicit full reconciliation.
Implementation
Future<void> reconcile() {
if (_closed) throw StateError('Watched Eagle library is closed');
final completer = Completer<void>();
_reconcileWaiters.add(completer);
_queue.add(_ReconcileSignal(completer));
return completer.future;
}