isRendered method

  1. @nonVirtual
bool isRendered()

Check if the component is rendered at DOM or not.

Implementation

@nonVirtual
bool isRendered() {
  return document.querySelector('#$id') != null;
}