AnimatedSequence constructor

const AnimatedSequence({
  1. required List<SequenceEntry> items,
  2. required AnimatedSequenceController controller,
  3. bool autostart = true,
  4. Size? size,
  5. bool applyTheme = false,
  6. Color? colorOverride,
  7. BlendMode? blendMode,
  8. Key? key,
})

Create a new instance of AnimatedSequence.

Implementation

const AnimatedSequence({
  required this.items,
  required this.controller,
  this.autostart = true,
  this.size,
  this.applyTheme = false,
  this.colorOverride,
  this.blendMode,
  super.key,
});