autofocus property
Implementation
bool get autofocus => getAttribute('autofocus') != null;
set
autofocus
(dynamic value)
inherited
Implementation
set autofocus(value) {
internalSetAttribute('autofocus', value?.toString() ?? '');
}