Locale constructor

const Locale({
  1. required Language lang,
  2. required Country country,
})

Implementation

const factory Locale({
  /// The language
  required Language lang,

  /// The country
  required Country country,
}) = _Locale;