BottomSheetOptions constructor

const BottomSheetOptions({
  1. bool barrierDismissible = true,
  2. bool useRootNavigator = true,
  3. RouteSettings? routeSettings,
  4. Color barrierColor = kCupertinoModalBarrierColor,
  5. Offset? anchorPoint,
  6. Color? backgroundColor,
  7. double? elevation,
  8. ShapeBorder? shape,
  9. Clip? clipBehavior,
  10. AnimationController? transitionAnimationController,
  11. bool enableDrag = true,
  12. bool isScrollControlled = true,
  13. BoxConstraints? constraints,
})

Implementation

const BottomSheetOptions({
  super.barrierDismissible,
  super.useRootNavigator,
  super.routeSettings,
  super.barrierColor,
  super.anchorPoint,
  this.backgroundColor,
  this.elevation,
  this.shape,
  this.clipBehavior,
  this.transitionAnimationController,
  this.enableDrag = true,
  this.isScrollControlled = true,
  this.constraints,
});