clearSynced method

void clearSynced()

Clears all synced items from the queue.

Implementation

void clearSynced() {
  _queue.removeWhere((item) => item.status == SyncStatus.synced);
}