rebuildElement method

void rebuildElement(
  1. T element
)

Notifies Window that the visual representation of element needs to be be rebuild.

Implementation

void rebuildElement(T element) {
  if (kDebugMode) {
    _debugCheckIsRegistered();
    _debugCheckIsValidElement(element);
  }
  _rebuildElement!(element);
}