GNCustomBottomSheet constructor
const
GNCustomBottomSheet({
- Key? key,
- required String title,
- String? subTitle,
- required List<
Widget> content, - String? fontFamily,
- double? titleFontSize,
- double? minHeight,
- double? maxHeight,
- EdgeInsets? padding,
- Widget? endWidget,
- Color? bottomSheetColor,
- Color? titleFontColor,
- IconData? titleIcon,
- double? titleIconSize,
- 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,
});