pushUnsyncedItems abstract method

Future<void> pushUnsyncedItems(
  1. List<T> items
)

Synchronize the given items with the remote server.

This method should handle both uploading new items and updating existing ones. It should also handle conflicts based on your chosen conflict resolution strategy.

Implementation

Future<void> pushUnsyncedItems(List<T> items);