BottomPickerButton constructor
BottomPickerButton({})
Implementation
BottomPickerButton({
Key? key,
required this.onClick,
required this.iconColor,
this.text,
this.textStyle,
this.displayIcon = true,
this.gradientColors = blueThemeColor,
this.solidColor,
}) : super(key: key) {
if (!displayIcon) {
assert(text != null);
}
}