muted method

Audio muted([
  1. bool m = true
])

Implementation

Audio muted([bool m = true]) {
  if (m) attr('muted', BooleanAttribute(true));
  return this;
}