ensureCachedCollection method

HTMLCollection ensureCachedCollection()

Implementation

@pragma('vm:prefer-inline')
HTMLCollection ensureCachedCollection() {
  _collection ??= HTMLCollection(this);
  return _collection!;
}