LanguageOption constructor

const LanguageOption({
  1. required String value,
  2. required String code,
  3. String? iconPath,
})

Implementation

const LanguageOption({
  required this.value,
  required this.code,
  this.iconPath,
});