copyWith method
Returns a copy of this config with selected fields replaced.
Implementation
PvtroConfig copyWith({
String? output,
bool? verbose,
bool? help,
List<String>? excludedPackages,
}) {
return PvtroConfig(
output: output ?? this.output,
verbose: verbose ?? this.verbose,
help: help ?? this.help,
excludedPackages: excludedPackages ?? this.excludedPackages,
);
}