KeyframeEffect constructor

KeyframeEffect(
  1. RenderStyle renderStyle,
  2. List<Keyframe> keyframes,
  3. EffectTiming? options, {
  4. bool isTransition = false,
})

Implementation

KeyframeEffect(this.renderStyle, List<Keyframe> keyframes, EffectTiming? options, {this.isTransition = false}) {
  timing = options ?? EffectTiming();

  _propertySpecificKeyframeGroups = _makePropertySpecificKeyframeGroups(keyframes);
  _interpolations = _makeInterpolations(_propertySpecificKeyframeGroups, renderStyle);


}