NiceLocaleEntry constructor

const NiceLocaleEntry({
  1. required String languageCode,
  2. required String countryCode,
  3. required String displayName,
  4. required String nativeName,
  5. bool isRTL = false,
  6. int completionPercent = 100,
  7. bool isDefault = false,
})

Implementation

const NiceLocaleEntry({
  required this.languageCode,
  required this.countryCode,
  required this.displayName,
  required this.nativeName,
  this.isRTL = false,
  this.completionPercent = 100,
  this.isDefault = false,
});