muted method

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

Implementation

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