HTMLCollectionBase constructor
Implementation
factory HTMLCollectionBase({
_i2.num? length,
_i3.Element? Function(_i2.num)? item,
}) =>
HTMLCollectionBase._(
length: length,
item: item == null
? null
: _i4.allowInterop((p0) => () => item(p0) ?? _i6.undefined),
);