BottomSheetDragEndHandler typedef

BottomSheetDragEndHandler = void Function(DragEndDetails details, {BottomSheetBehavior? behavior, bool? isClosing})

A callback for when the user stops dragging the bottom sheet.

Used by BottomSheetView.onDragEnd.

Implementation

typedef BottomSheetDragEndHandler = void Function(
  DragEndDetails details, {
  bool? isClosing,
  BottomSheetBehavior? behavior,
});