resolve method

T? resolve(
  1. double ratio
)

Given a ratio between 0 and 1, calculates the interpolated value of the property being animated and returns it.

Implementation

T? resolve(double ratio) {
  return null;
}