sendSyncRequest method
Send a sync request to trigger history transfer from other installations. This is the manual trigger for XMTP history sync across devices.
Implementation
@override
Future<bool> sendSyncRequest() async {
try {
await _promiseToFuture(
_clientManager.sendSyncRequest(),
);
return true;
} catch (e) {
throw Exception('Failed to send sync request: $e');
}
}