icons property
A list of icon information. Note that this just reflects what was declared in the manifest, and the actual image at that url may be larger or smaller than what was declared, so you might consider using explicit width and height attributes on img tags referencing these images. See the manifest documentation on icons for more details.
Implementation
List<IconInfo>? get icons => _wrapped.icons?.toDart
.cast<$js.IconInfo>()
.map((e) => IconInfo.fromJS(e))
.toList();