SilBottomSheetWidget constructor

const SilBottomSheetWidget({
  1. List<String>? itemList,
  2. String? warnTitle,
  3. double? itemHeight,
  4. void tapSureSeletedFunc(
    1. int selectedIndex
    )?,
  5. void tapWarnFunc()?,
  6. Widget? contentWidget,
  7. Color? backgroudColor = Colors.white,
  8. Color? separatorLineColor,
  9. Color? bottomSeparatorLineColor,
  10. Color? itemTitleColor,
  11. Color? warnTitleColor,
  12. String? cancelTitle,
  13. Key? key,
})

Implementation

const SilBottomSheetWidget(
    {this.itemList,
    this.warnTitle,
    this.itemHeight,
    this.tapSureSeletedFunc,
    this.tapWarnFunc,
    this.contentWidget,
    this.backgroudColor = Colors.white,
    this.separatorLineColor,
    this.bottomSeparatorLineColor,
    this.itemTitleColor,
    this.warnTitleColor,
    this.cancelTitle,
    Key? key})
    : super(key: key);