syncAll method
Implementation
@override
Future<Map<String, int>> syncAll({List<String> consentStates = const ['allowed']}) async {
await _ensureInitialized();
final numSynced = await rust_conversations.syncAll(consentStates: consentStates);
return {'numGroupsSynced': numSynced};
}