build method

Widget build(
  1. int i,
  2. double animationValue,
  3. Widget widget
)
override

Implementation

Widget build(int i, double animationValue, Widget widget) {
  double s = _getValue(values, animationValue, i);
  return new Transform.scale(scale: s, child: widget);
}