FloatingView constructor

const FloatingView(
  1. Widget child,
  2. FloatingData floatingData,
  3. bool isPosCache,
  4. bool isSnapToEdge,
  5. HideController _hideControl,
  6. List<FloatingListener> _listener,
  7. FloatingLog _log, {
  8. Key? key,
  9. double slideTopHeight = 0,
  10. double slideBottomHeight = 0,
  11. double moveOpacity = 0.3,
})

Implementation

const FloatingView(this.child, this.floatingData, this.isPosCache,
    this.isSnapToEdge, this._hideControl, this._listener, this._log,
    {Key? key,
    this.slideTopHeight = 0,
    this.slideBottomHeight = 0,
    this.moveOpacity = 0.3})
    : super(key: key);