copyWith method
Implementation
LocalizationCheckerConfig copyWith({
List<String>? scanPaths,
List<String>? customUiPatterns,
}) =>
LocalizationCheckerConfig(
projectPath: projectPath,
scanPaths: scanPaths ?? this.scanPaths,
excludeDirs: excludeDirs,
excludeFiles: excludeFiles,
verbose: verbose,
includeComments: includeComments,
customUiPatterns: customUiPatterns ?? this.customUiPatterns,
);