SelectPickerCardItemStyle constructor

SelectPickerCardItemStyle({
  1. Color? dividerColor = Colors.grey,
  2. Color? backgroundColor = Colors.white,
  3. Color? textColor = Colors.black87,
  4. double? dividerHeight = 1,
})

Implementation

SelectPickerCardItemStyle({
  this.dividerColor = Colors.grey,
  this.backgroundColor = Colors.white,
  this.textColor = Colors.black87,
  this.dividerHeight = 1,
});