CountrySelectOption constructor

const CountrySelectOption({
  1. bool showCode = false,
  2. TextStyle countryIsoCodeTextStyle = const TextStyle(fontSize: 16, fontWeight: FontWeight.w600),
  3. TextStyle countryDialCodeTextStyle = const TextStyle(fontSize: 16, fontWeight: FontWeight.w600),
  4. TextStyle defaultTextStyle = const TextStyle(fontSize: 16, fontWeight: FontWeight.w600),
  5. String defaultText = '🏳️',
})

Implementation

const CountrySelectOption({
  this.showCode = false,
  this.countryIsoCodeTextStyle = const TextStyle(
    fontSize: 16,
    fontWeight: FontWeight.w600,
  ),
  this.countryDialCodeTextStyle = const TextStyle(
    fontSize: 16,
    fontWeight: FontWeight.w600,
  ),
  this.defaultTextStyle = const TextStyle(
    fontSize: 16,
    fontWeight: FontWeight.w600,
  ),
  this.defaultText = '🏳️',
});