getRunTime method

double getRunTime(
  1. List<Animation> animations
)

Implementation

double getRunTime(List<Animation> animations) =>
    animations.map((anim) => anim.runTime).reduce(max);