BasePickerConfig constructor
BasePickerConfig({})
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;