copyWith method
Returns a new instance by overriding the values passed as arguments
Implementation
InMemoryFiles copyWith({
WitFile? worldFile,
List<WitFile>? pkgFiles,
}) =>
InMemoryFiles(
worldFile: worldFile ?? this.worldFile,
pkgFiles: pkgFiles ?? this.pkgFiles);