UpdateLanguagePackStrings constructor

const UpdateLanguagePackStrings({
  1. required String localizationTarget,
  2. required String languagePackId,
  3. required List<LanguagePackString> strings,
  4. dynamic extra,
  5. int? clientId,
})

Some language pack strings have been updated

Implementation

const UpdateLanguagePackStrings({
  required this.localizationTarget,
  required this.languagePackId,
  required this.strings,
  this.extra,
  this.clientId,
});