AppLocaleId constructor

const AppLocaleId({
  1. required String languageCode,
  2. String? scriptCode,
  3. String? countryCode,
})

Implementation

const AppLocaleId({
  required this.languageCode,
  this.scriptCode,
  this.countryCode,
});