BottomPickerButton constructor

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

Implementation

const BottomPickerButton({
  Key? key,
  required this.onClick,
  this.theme = BottomPickerTheme.blue,
  this.gradients,
  this.solidColor,
  this.buttonPadding,
  this.buttonWidth,
  this.buttonChild,
  this.style,
}) : super(key: key);