GNCustomBottomSheet constructor

const GNCustomBottomSheet({
  1. Key? key,
  2. required String title,
  3. String? subTitle,
  4. required List<Widget> content,
  5. String? fontFamily,
  6. double? titleFontSize,
  7. double? minHeight,
  8. double? maxHeight,
  9. EdgeInsets? padding,
  10. Widget? endWidget,
  11. Color? bottomSheetColor,
  12. Color? titleFontColor,
  13. IconData? titleIcon,
  14. double? titleIconSize,
  15. Color? titleIconColor,
})

Implementation

const GNCustomBottomSheet({
  super.key,
  required this.title,
  this.subTitle,
  required this.content,
  this.fontFamily,
  this.titleFontSize,
  this.minHeight,
  this.maxHeight,
  this.padding,
  this.endWidget,
  this.bottomSheetColor,
  this.titleFontColor,
  this.titleIcon,
  this.titleIconSize,
  this.titleIconColor,
});