AccidentalFish.UIKit.FluentAnimate.EaseInOut C# (CSharp) Method

EaseInOut() public static method

public static EaseInOut ( double duration, System.Action action ) : IFluentAnimate
duration double
action System.Action
return IFluentAnimate
        public static IFluentAnimate EaseInOut(double duration, Action action)
        {
            IFluentAnimate animator = new FluentAnimate();
            animator.EaseIn(duration, action);
            return animator;
        }