SyncResult constructor

SyncResult({
  1. required bool success,
  2. List? conflicts,
  3. String? error,
  4. int syncedCount = 0,
  5. int failedCount = 0,
})

Implementation

SyncResult({
  required this.success,
  this.conflicts,
  this.error,
  this.syncedCount = 0,
  this.failedCount = 0,
});