MaterialBottomSheetData constructor

MaterialBottomSheetData({
  1. Key? widgetKey,
  2. Widget? content,
  3. Widget? title,
  4. VoidCallback? onClosing,
  5. WidgetBuilder? builder,
  6. bool? enableDrag,
  7. Iterable<Widget>? actions,
  8. double? elevation,
})

Implementation

MaterialBottomSheetData({
  Key? widgetKey,
  Widget? content,
  Widget? title,
  this.onClosing,
  this.builder,
  this.enableDrag,
  this.actions,
  this.elevation,
}) : super(widgetKey: widgetKey, content: content, title: title);