wrapValue method

Widget wrapValue(
  1. Widget builder(
    1. BuildContext context,
    2. V value
    )
)

Implementation

Widget wrapValue(Widget Function(BuildContext context, V value) builder) {
  return AnimatedBuilder(
      animation: this, builder: (context, _) => builder(context, value));
}