setMixWith method

void setMixWith(
  1. Animation from,
  2. Animation to,
  3. double duration
)

Implementation

void setMixWith(Animation from, Animation to, double duration) {
  final String key = from.name + '.' + to.name;
  animationToMixTime[key] = duration;
}