languagePackStringValuePluralized property

LanguagePackStringValuePluralized? languagePackStringValuePluralized

A language pack string which has different forms based on the number of some object it mentions. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more information

Implementation

LanguagePackStringValuePluralized? get languagePackStringValuePluralized {
  if (this is LanguagePackStringValuePluralized) {
    return this as LanguagePackStringValuePluralized;
  }
  return null;
}