BottomDialogWrapper<T extends Object> constructor

BottomDialogWrapper<T extends Object>({
  1. Widget? child,
  2. Color barrierColor = const Color(0x55000000),
  3. int duration = 300,
  4. T exitCallBack()?,
  5. WidgetBuilder? buildChild,
  6. double transformHeight = 200,
  7. bool enableDrag = true,
  8. int dragScrollDep = 0,
})

Implementation

BottomDialogWrapper({
  this.child,
  this.barrierColor = const Color(0x55000000),
  this.duration = 300,
  this.exitCallBack,
  this.buildChild,
  this.transformHeight = 200,
  this.enableDrag = true,
  this.dragScrollDep = 0,
}) : assert(child != null || buildChild != null);