ModalBottomSheetRoute<T> constructor

ModalBottomSheetRoute<T>({
  1. required WidgetBuilder builder,
  2. ThemeData? theme,
  3. String? barrierLabel,
  4. Color? backgroundColor,
  5. double? elevation,
  6. ShapeBorder? shape,
  7. bool? enableDrag = true,
  8. RouteSettings? settings,
  9. bool? dismissible,
})

Implementation

ModalBottomSheetRoute({
  required this.builder,
  this.theme,
  this.barrierLabel,
  this.backgroundColor,
  this.elevation,
  this.shape,
  this.enableDrag = true,
  super.settings,
  this.dismissible,
});