copyWith method

Implementation

SetCustomLanguagePack copyWith({
  LanguagePackInfo? info,
  List<LanguagePackString>? strings,
}) => SetCustomLanguagePack(
  info: info ?? this.info,
  strings: strings ?? this.strings,
);