PackageDetail constructor

const PackageDetail({
  1. bool? showVersion,
  2. bool? showSource,
  3. bool? showDescription,
})

Implementation

const PackageDetail({
  this.showVersion,
  bool? showSource,
  bool? showDescription,
})  : showSource = showDescription == true ? true : showSource,
      showDescription = showDescription ?? false;