AnimatedVector constructor

const AnimatedVector({
  1. required AnimatedVectorData vector,
  2. required Animation<double> progress,
  3. bool applyTheme = false,
  4. Color? color,
  5. BlendMode blendMode = BlendMode.srcIn,
  6. Size? size,
})

Creates a new instance of AnimatedVector.

Implementation

const AnimatedVector({
  required this.vector,
  required this.progress,
  this.applyTheme = false,
  this.color,
  this.blendMode = BlendMode.srcIn,
  this.size,
});