PickerStyle constructor
PickerStyle({})
Implementation
PickerStyle({
this.context,
bool? showTitleBar,
this.menu,
double? pickerHeight,
double? pickerTitleHeight,
double? pickerItemHeight,
double? menuHeight,
Widget? cancelButton,
Widget? commitButton,
Widget? title,
Decoration? headDecoration,
Color? backgroundColor,
Color? textColor,
this.textSize,
this.itemOverlay,
}) : _showTitleBar = showTitleBar,
_pickerHeight = pickerHeight,
_pickerTitleHeight = pickerTitleHeight,
_pickerItemHeight = pickerItemHeight,
_menuHeight = menuHeight,
_cancelButton = cancelButton,
_commitButton = commitButton,
_title = title,
_headDecoration = headDecoration,
_backgroundColor = backgroundColor,
_textColor = textColor;