MiniBottomSheet constructor

const MiniBottomSheet({
  1. Key? key,
  2. required Widget child,
  3. EdgeInsetsGeometry? padding,
  4. bool showHandle = true,
})

Implementation

const MiniBottomSheet({
  super.key,
  required this.child,
  this.padding,
  this.showHandle = true,
});