UserLocale constructor

UserLocale({
  1. String? country,
  2. String? language,
  3. String? variant,
})

Implementation

UserLocale({
  this.country,
  this.language,
  this.variant,
});