BottomSheetBase constructor

const BottomSheetBase({
  1. Key? key,
  2. required Widget child,
})

Creates a BottomSheetBase.

child - The content to display inside the bottom sheet.

Implementation

const BottomSheetBase({super.key, required this.child});