async method

Script async([
  1. bool a = true
])

Implementation

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