CustomBottomSheet constructor

const CustomBottomSheet({
  1. Key? key,
  2. required Widget child,
  3. Color? backgroundColor,
  4. double? paddingBottom,
})

Implementation

const CustomBottomSheet({
  super.key,
  required this.child,
  this.backgroundColor,
  this.paddingBottom,
});