tweenFrom method

Tween<double> tweenFrom(
  1. double begin
)

allows to create a tween that start with begin value and ends with this value.

Implementation

Tween<double> tweenFrom(double begin) =>
    Tween<double>(begin: begin, end: this);