KeyframeEffect constructor
KeyframeEffect(
- RenderStyle renderStyle,
- List<
Keyframe> keyframes, - EffectTiming? options, {
- 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);
}