async property
bool
get
async
Implementation
bool get async => getAttribute('async') != null;
set
async
(bool value)
Implementation
set async(bool value) {
if (value) {
internalSetAttribute('async', '');
} else {
removeAttribute('async');
}
}