SheetHandleBar constructor

const SheetHandleBar({
  1. Key? key,
  2. required bool expanded,
  3. required GestureDragUpdateCallback onVerticalDragUpdate,
  4. required GestureDragEndCallback onVerticalDragEnd,
  5. required VoidCallback onVerticalDragCancel,
  6. Duration? duration,
  7. Curve curve = Curves.easeOutCubic,
  8. String? semanticLabel,
  9. String? expandLabel,
  10. String? collapseLabel,
  11. String? dismissLabel,
  12. VoidCallback? onTap,
})

Implementation

const SheetHandleBar({
  super.key,
  required this.expanded,
  required this.onVerticalDragUpdate,
  required this.onVerticalDragEnd,
  required this.onVerticalDragCancel,
  this.duration,
  this.curve = Curves.easeOutCubic,
  this.semanticLabel,
  this.expandLabel,
  this.collapseLabel,
  this.dismissLabel,
  this.onTap,
});