disabled method

Fieldset disabled([
  1. bool d = true
])

Implementation

Fieldset disabled([bool d = true]) {
  if (d) attr('disabled', BooleanAttribute(true));
  return this;
}