copyWith method
Implementation
Config copyWith({
String? templatePath,
String? defaultModuleName,
}) {
return Config(
templatePath: templatePath ?? this.templatePath,
defaultModuleName: defaultModuleName ?? this.defaultModuleName,
);
}