SheetContent constructor

const SheetContent({
  1. Key? key,
  2. Widget? child,
  3. String? title,
  4. String? supTitle,
  5. TextStyle? titleTxtStyle,
  6. required double borderRadius,
  7. double? titleBottomPadding,
  8. double? sheetHeightFraction,
  9. Color? bgColor,
  10. required bool hasPillGesture,
  11. VoidCallback? onWillPop,
  12. bool? isReverseScrolling,
  13. EdgeInsetsGeometry? contentPadding,
})

Implementation

const SheetContent({
  super.key,
  this.child,
  this.title,
  this.supTitle,
  this.titleTxtStyle,
  required this.borderRadius,
  this.titleBottomPadding,
  this.sheetHeightFraction,
  this.bgColor,
  required this.hasPillGesture,
  this.onWillPop,
  this.isReverseScrolling,
  this.contentPadding,
});