InteractiveBottomSheet constructor

const InteractiveBottomSheet({
  1. Key? key,
  2. InteractiveBottomSheetOptions options = const InteractiveBottomSheetOptions(),
  3. DraggableAreaOptions draggableAreaOptions = const DraggableAreaOptions(),
  4. Widget? child,
})

Should be placed inside the bottomSheet property of a Scaffold.

Implementation

const InteractiveBottomSheet({
  super.key,
  this.options = const InteractiveBottomSheetOptions(),
  this.draggableAreaOptions = const DraggableAreaOptions(),
  this.child,
});