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