RelativeBubbleSlide constructor

const RelativeBubbleSlide({
  1. Shape shape = const Rectangle(),
  2. BoxShadow boxShadow = const BoxShadow(color: Colors.black54, blurRadius: 0, spreadRadius: 0),
  3. dynamic passThroughMode = PassthroughMode.NONE,
  4. required BubbleSlideChild child,
  5. required GlobalKey<State<StatefulWidget>> widgetKey,
  6. int highlightPadding = 0,
})

Creates a new relative bubble slide instance.

Implementation

const RelativeBubbleSlide({
  Shape shape = const Rectangle(),
  BoxShadow boxShadow = const BoxShadow(
    color: Colors.black54,
    blurRadius: 0,
    spreadRadius: 0,
  ),
  passThroughMode = PassthroughMode.NONE,
  required BubbleSlideChild child,
  required this.widgetKey,
  this.highlightPadding = 0,
}) : super(
        shape: shape,
        boxShadow: boxShadow,
        child: child,
        passthroughMode: passThroughMode,
      );