BottomSheetThemeData constructor Null safety

const BottomSheetThemeData(
  1. {Color? backgroundColor,
  2. double? elevation,
  3. Color? modalBackgroundColor,
  4. double? modalElevation,
  5. ShapeBorder? shape,
  6. Clip? clipBehavior,
  7. BoxConstraints? constraints}
)

Creates a theme that can be used for ThemeData.bottomSheetTheme.

Implementation

const BottomSheetThemeData({
  this.backgroundColor,
  this.elevation,
  this.modalBackgroundColor,
  this.modalElevation,
  this.shape,
  this.clipBehavior,
  this.constraints,
});