HTMLCollectionOf<T extends Element> constructor
HTMLCollectionOf<T extends Element> ({})
Implementation
factory HTMLCollectionOf({
_i2.dynamic Function(_i2.num)? item,
_i2.dynamic Function(_i2.String)? namedItem,
_i2.num? length,
}) =>
HTMLCollectionOf._(
item: item == null
? null
: _i4.allowInterop((p0) => () => item(p0) ?? _i6.undefined),
namedItem: namedItem == null
? null
: _i4.allowInterop((p0) => () => namedItem(p0) ?? _i6.undefined),
length: length,
);