SelectPickerInputSearchStyle constructor

SelectPickerInputSearchStyle({
  1. Color? borderColor = Colors.white,
  2. Color? backgroundColor = const Color(0xFFf2f2f2),
  3. Color? textColor = const Color(0xFF303030),
  4. double? height = 0,
  5. double? borderRadius = 50,
  6. double? borderSize = 0,
})

Implementation

SelectPickerInputSearchStyle({
  this.borderColor = Colors.white,
  this.backgroundColor = const Color(0xFFf2f2f2),
  this.textColor = const Color(0xFF303030),
  this.height = 0,
  this.borderRadius = 50,
  this.borderSize = 0,
});