BubbleSlide constructor

const BubbleSlide({
  1. Shape shape = const Rectangle(),
  2. BoxShadow boxShadow = const BoxShadow(color: Colors.black54, blurRadius: 0, spreadRadius: 0),
  3. VoidCallback? onEnter,
  4. VoidCallback? onExit,
  5. BubbleSlideChild? child,
  6. PassthroughMode passthroughMode = PassthroughMode.NONE,
})

Creates a new bubble slide instance.

Implementation

const BubbleSlide({
  this.shape = const Rectangle(),
  this.boxShadow = const BoxShadow(
    color: Colors.black54,
    blurRadius: 0,
    spreadRadius: 0,
  ),
  this.onEnter,
  this.onExit,
  this.child,
  this.passthroughMode = PassthroughMode.NONE,
});