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