hydrateAll function
void
hydrateAll()
Hydrates all registered components found in the DOM.
Implementation
void hydrateAll() {
if (!web.kIsBrowser || _isHydrating) return;
_isHydrating = true;
try {
_hydrateRecursive(web.document);
} finally {
_isHydrating = false;
}
}