SheetContent constructor

const SheetContent({
  1. Key? key,
  2. required DoubleSheetConfig config,
  3. required SheetGestureController controller,
  4. SynchronizedScrollController? synchronizedController,
  5. required double screenHeight,
  6. required Widget child,
  7. Animation<double>? animation,
})

Implementation

const SheetContent({
  super.key,
  required this.config,
  required this.controller,
  this.synchronizedController,
  required this.screenHeight,
  required this.child,
  this.animation,
});