SyncOutcome constructor

SyncOutcome({
  1. required MountRecord record,
  2. SyncDirection? direction,
  3. int applied = 0,
  4. String? publishedBranch,
  5. Conflict? conflict,
  6. List<String> transferredPaths = const [],
  7. List<String> copiedPaths = const [],
  8. List<String> removedPaths = const [],
  9. int bytesTransferred = 0,
  10. int bytesOnWire = 0,
})

Creates a sync outcome.

Implementation

SyncOutcome({
  required this.record,
  this.direction,
  this.applied = 0,
  this.publishedBranch,
  this.conflict,
  this.transferredPaths = const [],
  this.copiedPaths = const [],
  this.removedPaths = const [],
  this.bytesTransferred = 0,
  this.bytesOnWire = 0,
});