Locales constructor

const Locales({
  1. String name = "English",
  2. String native = "English",
  3. String code = "en_US",
  4. Locale locale = const Locale("en", "US"),
})

Implementation

const Locales({
  this.name = "English",
  this.native = "English",
  this.code = "en_US",
  this.locale = const Locale("en", "US"),
});