interpolator property
KeyFrameInterpolator?
get
interpolator
inherited
Implementation
KeyFrameInterpolator? get interpolator {
switch (style?.animationStyle) {
case LayoutAnimationStyle.inherit:
return _inheritedInterpolator ?? style?.interpolator;
case LayoutAnimationStyle.custom:
return style?.interpolator;
default:
return null;
}
}