requestSync method

Future<void> requestSync({
  1. TTMsgCb? onAck,
})

Request synchronization of the current path.

Implementation

Future<void> requestSync({TTMsgCb? onAck}) async {
  final souls = await _client.graph.getPathSouls(getPath());
  for (final soul in souls) {
    final disposer = _client.graph.get(soul, onAck);
    disposer();
  }
}