muted method

Video muted(
  1. bool boolean
)

A Boolean attribute that indicates the default setting of the audio contained in the video. Read more...

Implementation

Video muted(bool boolean) {
  if (boolean && node.attrs != null) {
    VirtualAttr attr = VirtualAttr('muted', '');
    node.attrs!.add(attr);
  }
  return this;
}