KeyframeInterpolation constructor

KeyframeInterpolation({
  1. required String property,
  2. required double startOffset,
  3. required double endOffset,
  4. required Curve? easing,
  5. required dynamic begin,
  6. required dynamic end,
  7. required Function lerp,
})

Implementation

KeyframeInterpolation(
    {required this.property,
    required this.startOffset,
    required this.endOffset,
    required this.easing,
    required this.begin,
    required this.end,
    required this.lerp}) {
  easing ??= Curves.linear;
}