LogoAnimation constructor

LogoAnimation({
  1. required Animation animation,
  2. required double xCoor,
  3. required double yCoor,
  4. required Color pointColor,
  5. required double pointSize,
})

Implementation

LogoAnimation({
  required Animation animation,
  required this.xCoor,
  required this.yCoor,
  required this.pointColor,
  required this.pointSize,
}) : super(listenable: animation);