focus method
Implementation
bool focus() {
final htmlElement = asHTMLElementChecked;
if (htmlElement != null) {
htmlElement.focus();
return true;
}
return false;
}
bool focus() {
final htmlElement = asHTMLElementChecked;
if (htmlElement != null) {
htmlElement.focus();
return true;
}
return false;
}