copyWith method
Implementation
LocalizationPackage copyWith({
String? arbDirRelativePath,
String? path,
}) =>
LocalizationPackage(
path: path ?? this.path,
arbDirRelativePath: arbDirRelativePath ?? this.arbDirRelativePath,
templateFile: templateFile,
name: name,
allowedLocales: _allowedLocales,
projectKey: projectKey,
);