Keyframe constructor

const Keyframe({
  1. required double offset,
  2. required Style style,
  3. Easing? easing,
})

Creates a new Keyframe instance.

Implementation

const Keyframe({required this.offset, required this.style, this.easing});