BottomCenterWidget constructor

const BottomCenterWidget({
  1. Key? key,
  2. required Widget child,
  3. double yOffset = 1.0,
  4. int duration = 600,
  5. int? index,
})

Implementation

const BottomCenterWidget(
    {Key? key,
    required this.child,
    this.yOffset = 1.0,
    this.duration = 600,
    this.index})
    : super(key: key);