autoplay method

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

Implementation

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