BasePickerConfig constructor

BasePickerConfig({
  1. Color? backgroundColor,
  2. TextStyle? cancelTextStyle,
  3. TextStyle? confirmTextStyle,
  4. TextStyle? titleTextStyle,
  5. double? pickerHeight,
  6. double? titleHeight,
  7. double? itemHeight,
  8. TextStyle? itemTextStyle,
  9. TextStyle? itemTextSelectedStyle,
  10. Color? dividerColor,
  11. double? cornerRadius,
})

Implementation

BasePickerConfig({
  Color? backgroundColor,
  TextStyle? cancelTextStyle,
  TextStyle? confirmTextStyle,
  TextStyle? titleTextStyle,
  double? pickerHeight,
  double? titleHeight,
  double? itemHeight,
  TextStyle? itemTextStyle,
  TextStyle? itemTextSelectedStyle,
  Color? dividerColor,
  double? cornerRadius,
})  : _backgroundColor = backgroundColor,
      _cancelTextStyle = cancelTextStyle,
      _confirmTextStyle = confirmTextStyle,
      _titleTextStyle = titleTextStyle,
      _pickerHeight = pickerHeight,
      _titleHeight = titleHeight,
      _itemHeight = itemHeight,
      _itemTextStyle = itemTextStyle,
      _itemTextSelectedStyle = itemTextSelectedStyle,
      _dividerColor = dividerColor,
      _cornerRadius = cornerRadius;