ZegoDraggableBottomSheet constructor

const ZegoDraggableBottomSheet({
  1. Key? key,
  2. Alignment alignment = Alignment.bottomLeft,
  3. Widget? backgroundWidget,
  4. bool blurBackground = true,
  5. Widget? expandedChild,
  6. double expansionExtent = 10,
  7. double maxExtent = double.infinity,
  8. double minExtent = 10,
  9. Widget? previewChild,
  10. Axis scrollDirection = Axis.vertical,
})

Implementation

const ZegoDraggableBottomSheet({
  Key? key,
  this.alignment = Alignment.bottomLeft,
  this.backgroundWidget,
  this.blurBackground = true,
  this.expandedChild,
  this.expansionExtent = 10,
  this.maxExtent = double.infinity,
  this.minExtent = 10,
  this.previewChild,
  this.scrollDirection = Axis.vertical,
}) : super(key: key);