poster method
A URL for an image to be shown while the video is downloading. Read more...
Implementation
Video poster(String url, {bool? removeIf}) {
if (removeIf != true && node.attrs != null) {
VirtualAttr attr = VirtualAttr('poster', url);
node.attrs!.add(attr);
}
return this;
}