autoplay method

Audio autoplay([
  1. bool a = true
])

Implementation

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