Locale constructor

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

Returns the new instance of Locale.

Implementation

const Locale({
  required this.lang,
  required this.country,
});