copyWith method

LanguagePackString copyWith({
  1. String? key,
  2. LanguagePackStringValue? value,
})

Implementation

LanguagePackString copyWith({
  String? key,
  LanguagePackStringValue? value,
}) =>
    LanguagePackString(
      key: key ?? this.key,
      value: value ?? this.value,
    );