BottomSheetHeaderRow constructor

const BottomSheetHeaderRow({
  1. Key? key,
  2. required String title,
  3. required ThemeData theme,
  4. EdgeInsetsGeometry? padding,
})

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

Implementation

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