SyncBatchResult constructor

SyncBatchResult({
  1. required List<SyncPayload<Syncable>> items,
  2. String? nextCursor,
})

Implementation

SyncBatchResult({
  required this.items,
  this.nextCursor,
});