CountryCodeWidget constructor

const CountryCodeWidget({
  1. Key? key,
  2. Country? country,
  3. double flagIconWidth = 32,
  4. double flagIconHeight = 22,
  5. TextStyle? textStyle,
  6. required dynamic onTap(
    1. Country?
    ),
  7. SelectorType selectorType = SelectorType.bottomSheet,
  8. List<String> filteredCountries = const [],
})

Implementation

const CountryCodeWidget({super.key, this.country, this.flagIconWidth = 32, this.flagIconHeight = 22, this.textStyle, required this.onTap, this.selectorType = SelectorType.bottomSheet, this.filteredCountries = const []});