muted method

Audio muted(
  1. bool boolean
)

A attribute that indicates whether the audio will be initially silenced. Read more...

Implementation

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