draw method

  1. @override
void draw(
  1. Canvas canvas,
  2. double currentProgress,
  3. AnimatedParticle animatedParticle
)
override

Draws the trail on the canvas using the given currentProgress and animatedParticle.

Subclasses should implement this method to provide their specific drawing behavior.

Implementation

@override
void draw(
  Canvas canvas,
  double currentProgress,
  AnimatedParticle animatedParticle,
) {
  // Nothing to draw
}