SyncOutcome constructor
SyncOutcome({
- required MountRecord record,
- SyncDirection? direction,
- int applied = 0,
- String? publishedBranch,
- Conflict? conflict,
- List<
String> transferredPaths = const [], - List<
String> copiedPaths = const [], - List<
String> removedPaths = const [], - int bytesTransferred = 0,
- int bytesOnWire = 0,
- bool merged = false,
- List<
String> pushedPaths = const [], - List<
String> pulledPaths = const [],
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,
this.merged = false,
this.pushedPaths = const [],
this.pulledPaths = const [],
});