SelectPickerTopSelectorStyle constructor

SelectPickerTopSelectorStyle({
  1. Color? backgroundColor = const Color(0xFFeeeef7),
  2. Color? closeIconColor = const Color(0xFFE40101),
  3. TextStyle? textStyle = const TextStyle(fontSize: 18, height: 1, color: const Color(0xFF303030)),
  4. double? height = 45,
  5. double? borderRadius = 15,
  6. Icon? iconTitle,
})

Implementation

SelectPickerTopSelectorStyle({
  this.backgroundColor = const Color(0xFFeeeef7),
  this.closeIconColor = const Color(0xFFE40101),
  this.textStyle = const TextStyle(
    fontSize: 18,
    height: 1,
    color: const Color(0xFF303030),
  ),
  this.height = 45,
  this.borderRadius = 15,
  this.iconTitle,
});