copyWith method
LanguagePackStringValuePluralized
copyWith({
- String? zeroValue,
- String? oneValue,
- String? twoValue,
- String? fewValue,
- String? manyValue,
- String? otherValue,
- dynamic extra,
- int? clientId,
override
Implementation
@override
LanguagePackStringValuePluralized copyWith({
String? zeroValue,
String? oneValue,
String? twoValue,
String? fewValue,
String? manyValue,
String? otherValue,
dynamic extra,
int? clientId,
}) => 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,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);