CustomBottomsheetItem constructor

const CustomBottomsheetItem({
  1. Key? key,
  2. Widget? leading,
  3. Widget? title,
  4. Widget? trailing,
  5. EdgeInsets? padding,
  6. required VoidCallback oPress,
  7. bool hasShadow = false,
})

Implementation

const CustomBottomsheetItem({
  super.key,
  this.leading,
  this.title,
  this.trailing,
  this.padding ,
  required this.oPress,
  this.hasShadow = false,
});