CBottomSheetController<T> constructor

CBottomSheetController<T>({
  1. required ObservableValue<CFeedBackControl<T>> observable,
  2. required WidgetByDataBuilder<T> builder,
  3. bool dismissible = true,
  4. Color? barrierColor,
  5. bool useSafeArea = true,
  6. bool useRootNavigator = true,
  7. RouteSettings? routeSettings,
  8. Color? backgroundColor,
  9. double? elevation,
  10. bool enableDrag = true,
  11. bool isScrollControlled = false,
  12. ShapeBorder? shape,
  13. Clip? clipBehavior,
})

Implementation

CBottomSheetController({
  required this.observable,
  required this.builder,
  this.dismissible = true,
  this.barrierColor,
  this.useSafeArea = true,
  this.useRootNavigator = true,
  this.routeSettings,
  this.backgroundColor,
  this.elevation,
  this.enableDrag = true,
  this.isScrollControlled = false,
  this.shape,
  this.clipBehavior,
});