AnimationOptions constructor
AnimationOptions({})
Implementation
factory AnimationOptions({
num? duration,
num Function(num time)? easing,
required Point offset,
bool? animate,
bool? essential,
}) =>
AnimationOptions.fromJsObject(AnimationOptionsJsImpl(
duration: duration,
easing: easing,
offset: offset.jsObject,
animate: animate,
essential: essential,
));