ModalBottomSheet<T> constructor

const ModalBottomSheet<T>({
  1. Key? key,
  2. required GestureModalBottomSheetRoute<T> route,
  3. Color? backgroundColor,
  4. double? elevation,
  5. ShapeBorder? shape,
  6. Clip? clipBehavior,
  7. BoxConstraints? constraints,
})

Implementation

const ModalBottomSheet({
  Key? key,
  required this.route,
  this.backgroundColor,
  this.elevation,
  this.shape,
  this.clipBehavior,
  this.constraints,
}) : super(key: key);