copyWith method

  1. @override
LanguagePackStringValuePluralized copyWith({
  1. String? zeroValue,
  2. String? oneValue,
  3. String? twoValue,
  4. String? fewValue,
  5. String? manyValue,
  6. String? otherValue,
  7. dynamic extra,
  8. 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,
    );