autofocus property

bool get autofocus
inherited

Implementation

bool get autofocus => getAttribute('autofocus') != null;
set autofocus (dynamic value)
inherited

Implementation

set autofocus(value) {
  internalSetAttribute('autofocus', value?.toString() ?? '');
}