RelativeBubbleSlideChild constructor

const RelativeBubbleSlideChild({
  1. required Widget widget,
  2. AxisDirection direction = AxisDirection.down,
})

Creates a new relative bubble slide child instance.

Implementation

const RelativeBubbleSlideChild({
  required Widget widget,
  this.direction = AxisDirection.down,
}) : super(
        widget: widget,
      );