DriveChanges constructor

DriveChanges({
  1. List<String> conflicts = const [],
  2. List<String> localOnly = const [],
  3. List<String> remoteOnly = const [],
  4. List<String> unknown = const [],
  5. Map<String, FileDiff> diffs = const {},
})

Creates a changes summary.

Implementation

DriveChanges({
  this.conflicts = const [],
  this.localOnly = const [],
  this.remoteOnly = const [],
  this.unknown = const [],
  this.diffs = const {},
});