SelectionBottomSheet constructor

const SelectionBottomSheet({
  1. Key? key,
  2. required int currentBotBubbleid,
  3. required bool isMultiSelection,
  4. required Bubble bubble,
  5. required OptionClickedCallback optionSubmited,
})

Implementation

const SelectionBottomSheet({
  super.key,
  required this.currentBotBubbleid,
  required this.isMultiSelection,
  required this.bubble,
  required this.optionSubmited,
});