AbsoluteBubbleSlide constructor

const AbsoluteBubbleSlide({
  1. Shape shape = const Rectangle(),
  2. BoxShadow boxShadow = const BoxShadow(color: Colors.black54, blurRadius: 0, spreadRadius: 0),
  3. required BubbleSlideChild child,
  4. required PositionCalculator positionCalculator,
})

Creates a new absolute bubble slide instance.

Implementation

const AbsoluteBubbleSlide({
  Shape shape = const Rectangle(),
  BoxShadow boxShadow = const BoxShadow(
    color: Colors.black54,
    blurRadius: 0,
    spreadRadius: 0,
  ),
  required BubbleSlideChild child,
  required this.positionCalculator,
}) : super(
        shape: shape,
        boxShadow: boxShadow,
        child: child,
      );