NiceLocaleOption constructor

const NiceLocaleOption({
  1. required String code,
  2. required String name,
  3. String? nativeName,
  4. String? flag,
})

Implementation

const NiceLocaleOption({
  required this.code,
  required this.name,
  this.nativeName,
  this.flag,
});