WitsystemBottomSheetWidget constructor

const WitsystemBottomSheetWidget({
  1. Key? key,
  2. required List sheetItem,
  3. dynamic onTap(
    1. int index
    )?,
  4. dynamic onClosing()?,
  5. String? showKey,
})

Implementation

const WitsystemBottomSheetWidget(
    {Key? key,
    required this.sheetItem,
    this.onTap,
    this.onClosing,
    this.showKey})
    : super(key: key);