height method
The intrinsic height of the image, in pixels. Read more...
Implementation
Source height(int pixels, {bool? removeIf}) {
if (removeIf != true && node.attrs != null) {
VirtualAttr attr = VirtualAttr('height', pixels.toString());
node.attrs!.add(attr);
}
return this;
}