getPendingSyncOperations method
Get pending sync operations
Implementation
Future<List<SyncOperation>> getPendingSyncOperations() async {
_ensureInitialized();
return await _isar.syncOperations
.filter()
.statusEqualTo('pending')
.sortByTimestamp()
.findAll();
}