LeftRightWidget constructor

const LeftRightWidget({
  1. Key? key,
  2. required Widget child,
  3. required int index,
  4. bool left = true,
  5. double indexLeft = 0,
})

Implementation

const LeftRightWidget(
    {Key? key,
    required this.child,
    required this.index,
    this.left = true,
    this.indexLeft = 0})
    : super(key: key);