copyWith method

LocalizationTargetInfo copyWith({
  1. List<LanguagePackInfo>? languagePacks,
})

Implementation

LocalizationTargetInfo copyWith({List<LanguagePackInfo>? languagePacks}) =>
    LocalizationTargetInfo(
      languagePacks: languagePacks ?? this.languagePacks,
    );