resolveLoadingElements static method

void resolveLoadingElements([
  1. Element? root
])

Implementation

static void resolveLoadingElements([Element? root]) {
  root ??= document.documentElement;

  for (var type in UILoadingType.values) {
    resolveLoadingElementsOfType(type, root);
  }
}