MultiSelectBottomSheet constructor

const MultiSelectBottomSheet({
  1. required List<MultiSelectBottomSheetModel> items,
  2. required double width,
  3. required String? hint,
  4. Key? key,
})

Implementation

const MultiSelectBottomSheet({
  required this.items,
  required this.width,
  required this.hint,
  Key? key,
}) : super(key: key);