copyWith method

LanguagePackStringValuePluralized copyWith({
  1. String? zeroValue,
  2. String? oneValue,
  3. String? twoValue,
  4. String? fewValue,
  5. String? manyValue,
  6. String? otherValue,
})

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,
);