copyWith method
Implementation
Option copyWith({String? format, String? root, String? prefix, bool? index}) {
return Option(
format: format ?? this.format,
root: root ?? this.root,
pkgAsset: pkgAsset,
prefix: prefix ?? this.prefix,
directoryIndex: index ?? directoryIndex,
);
}