FakeAppLocale constructor

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

Implementation

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