ensureCachedCollection method

HTMLCollection ensureCachedCollection()

Implementation

HTMLCollection ensureCachedCollection() {
  _collection ??= HTMLCollection(this);
  return _collection!;
}