DpkConfig constructor

const DpkConfig({
  1. @Default.new(DpkMode.global) DpkMode mode,
  2. Catalog? catalog,
  3. List<String>? workspace,
  4. @Default.new(false) bool sortPubspec,
  5. required VersionConstraint version,
})

Implementation

const factory DpkConfig({
  @Default(DpkMode.global) DpkMode mode,
  Catalog? catalog,
  List<String>? workspace,
  @Default(false) bool sortPubspec,
  required VersionConstraint version,
}) = _DpkConfig;