BottomSheetHandle constructor

const BottomSheetHandle({
  1. Key? key,
  2. double width = 55,
  3. double height = 4.5,
  4. EdgeInsets padding = s16Padding,
  5. Color? handleColor,
  6. BorderRadius? borderRadius,
})

Implementation

const BottomSheetHandle({
  Key? key,
  this.width = 55,
  this.height = 4.5,
  this.padding = s16Padding,
  this.handleColor,
  this.borderRadius,
}) : super(key: key);