interval method
Implementation
EasyDialogAnimation<D> interval(double begin, double end) =>
_AnimationDecorator<D>(
target: this,
contextBuilder: (dialog) => _IntervalAnimationContext(
target: dialog.context,
interval: Interval(
begin,
end,
),
),
);