11#ifndef FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_SOURCE_SPRING_ANIMATION_H_
12#define FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_SOURCE_SPRING_ANIMATION_H_
14#include <Foundation/NSObject.h>
25- (instancetype)initWithStiffness:(
double)stiffness
26 damping:(
double)damping
28 initialVelocity:(
double)initialVelocity
29 fromValue:(
double)fromValue
30 toValue:(
double)toValue;
32- (double)curveFunction:(
double)t;
34@property(nonatomic, assign, readonly)
double stiffness;
35@property(nonatomic, assign, readonly)
double damping;
36@property(nonatomic, assign, readonly)
double mass;
39@property(nonatomic, assign)
double toValue;