copyWith method
Implementation
PicositeConfig copyWith({
String? sitePath,
String? outputPath,
String? includesPath,
String? assetsPath,
String? templatesPath,
bool? preview,
}) {
return PicositeConfig(
sitePath: sitePath ?? this.sitePath,
outputPath: outputPath ?? this.outputPath,
includesPath: includesPath ?? this.includesPath,
assetsPath: assetsPath ?? this.assetsPath,
templatesPath: templatesPath ?? this.templatesPath,
preview: preview ?? this.preview,
);
}