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