CountryDialCodePicker constructor

const CountryDialCodePicker({
  1. Key? key,
  2. Color? arrowDropDownColor,
  3. double borderRadius = 0.0,
  4. BottomSheetSettings bottomSheetSettings = const BottomSheetSettings(),
  5. FlagImageSettings flagImageSettings = const FlagImageSettings(),
  6. String? initialSelection,
  7. ValueChanged<CountryDialCode>? onChanged,
  8. EdgeInsets padding = const EdgeInsets.all(8.0),
  9. bool showArrowDropDown = true,
  10. bool showCountryDialCode = true,
  11. bool showFlag = true,
  12. TextStyle? textStyle,
})

Implementation

const CountryDialCodePicker({
  Key? key,
  this.arrowDropDownColor,
  this.borderRadius = 0.0,
  this.bottomSheetSettings = const BottomSheetSettings(),
  this.flagImageSettings = const FlagImageSettings(),
  this.initialSelection,
  this.onChanged,
  this.padding = const EdgeInsets.all(8.0),
  this.showArrowDropDown = true,
  this.showCountryDialCode = true,
  this.showFlag = true,
  this.textStyle,
}) : super(key: key);