ConstantTween<T> constructor

ConstantTween<T>(
  1. T value
)

Creates a constant tween that always evaluates to value.

Implementation

ConstantTween(T value) : super(begin: value, end: value);