list method
Value of the id attribute of the
<datalist> of autocomplete options.
Read more...
Implementation
Input list(String id, {bool? removeIf}) {
if (removeIf != true && node.attrs != null) {
VirtualAttr attr = VirtualAttr('list', id);
node.attrs!.add(attr);
}
return this;
}