copyWith method
Implementation
LanguagePackStringValuePluralized copyWith({
String? zeroValue,
String? oneValue,
String? twoValue,
String? fewValue,
String? manyValue,
String? otherValue,
}) => LanguagePackStringValuePluralized(
zeroValue: zeroValue ?? this.zeroValue,
oneValue: oneValue ?? this.oneValue,
twoValue: twoValue ?? this.twoValue,
fewValue: fewValue ?? this.fewValue,
manyValue: manyValue ?? this.manyValue,
otherValue: otherValue ?? this.otherValue,
);