FloatingPullUpCard constructor

const FloatingPullUpCard({
  1. Key? key,
  2. FloatingCardBuilder? cardBuilder,
  3. Color cardColor = Colors.white,
  4. double? height,
  5. double? width,
  6. BorderRadius? borderRadius,
  7. required Widget child,
  8. required GestureDragUpdateCallback onDrag,
  9. required GestureDragEndCallback onDragEnd,
  10. double elevation = 4,
  11. DragHandleBuilder? dragHandlebuilder,
})

Implementation

const FloatingPullUpCard({
  Key? key,
  this.cardBuilder,
  this.cardColor = Colors.white,
  this.height,
  this.width,
  this.borderRadius,
  required this.child,
  required this.onDrag,
  required this.onDragEnd,
  this.elevation = 4,
  this.dragHandlebuilder,
  // this.onDragChange,
}) : super(key: key);