build method

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

Implementation

Widget build(int i, double animationValue, Widget widget) {
  double v = _getValue(values, animationValue, i);
  return new Opacity(
    opacity: v,
    child: widget,
  );
}