BottomPickerButton constructor

const BottomPickerButton({
  1. Key? key,
  2. required Function onClick,
  3. List<Color> gradientColors = blueThemeColor,
  4. Color? solidColor,
  5. double? buttonPadding,
  6. double? buttonWidth,
  7. Widget? buttonChild,
  8. BoxDecoration? style,
})

Implementation

const BottomPickerButton({
  Key? key,
  required this.onClick,
  this.gradientColors = blueThemeColor,
  this.solidColor,
  this.buttonPadding,
  this.buttonWidth,
  this.buttonChild,
  this.style,
}) : super(key: key);