MoveStackWidget constructor

const MoveStackWidget({
  1. Key? key,
  2. required Widget child,
  3. required double xPosition,
  4. required double yPosition,
  5. bool update = true,
  6. double? maxY,
  7. bool chat = false,
  8. bool? right,
  9. bool half = false,
  10. double? width,
})

Implementation

const MoveStackWidget(
    {Key? key,
    required this.child,
    required this.xPosition,
    required this.yPosition,
    this.update = true,
    this.maxY,
    this.chat = false,
    this.right,
    this.half = false,
    this.width})
    : super(key: key);