KeyframesTween constructor

KeyframesTween(
  1. List<KeyframeProperty> properties
)

Create a new tween from the given animated properties.

Implementation

KeyframesTween(
  this.properties,
) : super(
        begin: KeyframeValue.evaluate(properties, 0),
        end: KeyframeValue.evaluate(properties, 1),
      );