ShowMyDialog constructor

ShowMyDialog({
  1. required Color substringBackground,
  2. required String searchHint,
  3. required TextStyle subStringStyle,
  4. required TextStyle style,
  5. required TextStyle searchStyle,
  6. required Color selectedCountryBackgroundColor,
  7. required Color notSelectedCountryBackgroundColor,
  8. required VoidCallback onSelectCountry,
  9. required TextStyle countryHeaderStyle,
})

Implementation

ShowMyDialog({
  required this.substringBackground,
  required this.searchHint,
  required this.subStringStyle,
  required this.style,
  required this.searchStyle,
  required this.selectedCountryBackgroundColor,
  required this.notSelectedCountryBackgroundColor,
  required this.onSelectCountry,
  required this.countryHeaderStyle,

});