SyncBatchResult constructor

SyncBatchResult({
  1. required bool success,
  2. List<SyncPayload<ServerItem>> items = const [],
  3. SyncCheckpoint? checkpoint,
  4. String? errorMessage,
})

Implementation

SyncBatchResult({
  required this.success,
  this.items = const [],
  this.checkpoint,
  this.errorMessage,
});