WippyListBottomSheet constructor

const WippyListBottomSheet({
  1. String? title,
  2. required Iterable<SelectableItem> itemList,
  3. required dynamic onClickItem(
    1. SelectableItem
    ),
  4. Key? key,
})

Implementation

const WippyListBottomSheet({
  this.title,
  required this.itemList,
  required this.onClickItem,
  super.key,
});