BottomSheetHeaderRow constructor

const BottomSheetHeaderRow({
  1. Key? key,
  2. required String title,
  3. required ThemeData theme,
  4. EdgeInsetsGeometry? padding,
  5. Widget closeButton(
    1. dynamic tap()
    )?,
  6. TextStyle? textStyle,
})

Creates a BottomSheetHeaderRow widget with the specified title, theme, and padding.

Implementation

const BottomSheetHeaderRow(
    {super.key,
    required this.title,
    required this.theme,
    this.padding,
    this.closeButton,
    this.textStyle});