SilBottomPickerBaseWidget constructor

const SilBottomPickerBaseWidget({
  1. Key? key,
  2. String? title,
  3. Widget? titleWidget,
  4. Color? themeColor,
  5. void tapCancelFunc()?,
  6. void tapSureFunc()?,
  7. double? radius,
  8. Widget? child,
})

Implementation

const SilBottomPickerBaseWidget(
    {Key? key,
    this.title,
    this.titleWidget,
    this.themeColor,
    this.tapCancelFunc,
    this.tapSureFunc,
    this.radius,
    this.child})
    : super(key: key);