Config constructor

Config({
  1. List<String> preferredRoots = const [],
  2. List<String> defaultTargets = const [],
  3. String? profile,
})

Implementation

Config({
  this.preferredRoots = const [],
  this.defaultTargets = const [],
  this.profile,
});