SnappingSheetContent constructor

SnappingSheetContent({
  1. required Widget child,
  2. bool draggable = false,
  3. SheetSizeBehavior sizeBehavior = const SheetSizeFill(),
  4. ScrollController? childScrollController,
})

Implementation

SnappingSheetContent({
  required Widget child,
  this.draggable = false,
  this.sizeBehavior = const SheetSizeFill(),
  this.childScrollController,
}) : this._child = child;