Locale constructor

Locale({
  1. String? name,
  2. String? id,
  3. String? code,
  4. bool? isDefault,
})

Implementation

Locale({
  this.name,
  this.id,
  this.code,
  this.isDefault,
});