LanguagePackString constructor

const LanguagePackString({
  1. required String key,
  2. LanguagePackStringValue? value,
})

Represents one language pack string

Implementation

const LanguagePackString({
  required this.key,
  this.value,
});