applyWrappers method

Widget applyWrappers(
  1. Widget built
)

Implementation

Widget applyWrappers(Widget built) {
  for (final wrapper in _wrappers.reversed) {
    built = wrapper(built);
  }
  return built;
}