InternalLinkTypeLanguagePack constructor

const InternalLinkTypeLanguagePack({
  1. required String languagePackId,
  2. dynamic extra,
  3. int? clientId,
})

The link is a link to a language pack. Call getLanguagePackInfo with the given language pack identifier to process the link

Implementation

const InternalLinkTypeLanguagePack({
  required this.languagePackId,
  this.extra,
  this.clientId,
});