AnimationChannelSpec constructor

AnimationChannelSpec({
  1. required LocalId target,
  2. String? targetName,
  3. required AnimationProperty property,
  4. required LocalId timeline,
  5. required LocalId keyframes,
})

Creates a channel driving property of target.

Implementation

AnimationChannelSpec({
  required this.target,
  this.targetName,
  required this.property,
  required this.timeline,
  required this.keyframes,
});