NUIDraggableFloatingButton constructor

NUIDraggableFloatingButton({
  1. required Widget child,
  2. required double width,
  3. required double height,
  4. Alignment initialAlignment = Alignment.bottomRight,
  5. Widget? feedback,
  6. Widget? childOnDrag,
  7. EdgeInsets? margin,
  8. bool enabled = true,
  9. Key? key,
})

Implementation

NUIDraggableFloatingButton({
  required this.child,
  required this.width,
  required this.height,
  this.initialAlignment = Alignment.bottomRight,
  this.feedback,
  this.childOnDrag,
  this.margin,
  this.enabled = true,
  Key? key
}) : super(key: key);