syncAll method

  1. @override
Future<Map<String, int>> syncAll({
  1. List<String> consentStates = const ['allowed'],
})
override

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};
}