autofocus method

Input autofocus([
  1. bool af = true
])

Implementation

Input autofocus([bool af = true]) {
  if (af) attr('autofocus', BooleanAttribute(true));
  return this;
}