CustomBottomsheet constructor
const
CustomBottomsheet({
- Key? key,
- String? title,
- Widget? trailing,
- Widget? leading,
- required Widget child,
- double? maxHeight,
- Color? bgColor,
- Color? hintColor,
- EdgeInsets? padding,
- VoidCallback? onDeletePressed,
- VoidCallback? onEditPressed,
- VoidCallback? onReportPressed,
- Widget? header,
- List<
Widget> ? items,
Implementation
const CustomBottomsheet({
super.key,
this.title,
this.trailing,
this.leading,
required this.child,
this.maxHeight,
this.bgColor,
this.hintColor,
this.padding,
this.onDeletePressed,
this.onEditPressed,
this.onReportPressed,
this.header,
this.items,
});