BirthdayEffectTwo constructor

const BirthdayEffectTwo({
  1. Key? key,
  2. required double viewWidth,
  3. required double viewHeight,
  4. required double startX,
  5. required double startY,
  6. required double startX1,
  7. required double startY1,
  8. required double startX2,
  9. required double startY2,
  10. int delaySec = 0,
  11. int delaySec1 = 2,
  12. int delaySec2 = 4,
  13. int durationSec = 2,
})

Implementation

const BirthdayEffectTwo(
    {Key? key, required this.viewWidth, required this.viewHeight,
      required this.startX, required this.startY,
      required this.startX1, required this.startY1,
      required this.startX2, required this.startY2,
      this.delaySec = 0, this.delaySec1 = 2, this.delaySec2 = 4, this.durationSec = 2
    })
    : super(key: key);