ShowStateDialog constructor

ShowStateDialog({
  1. Color? substringBackground,
  2. TextStyle? subStringStyle,
  3. TextStyle? style,
  4. Color? selectedStateBackgroundColor,
  5. Color? notSelectedStateBackgroundColor,
  6. required VoidCallback onSelectedState,
  7. TextStyle? stateHeaderStyle,
  8. Widget? closeIcon,
})

Implementation

ShowStateDialog({
   this.substringBackground,
   this.subStringStyle,
   this.style,
   this.selectedStateBackgroundColor,
   this.notSelectedStateBackgroundColor,
   required this.onSelectedState,
   this.stateHeaderStyle,
  this.closeIcon,
});