draggable function
An enumerated attribute indicating whether the element can be dragged, using the Drag and Drop API. It can have the following values:
true
, which indicates that the element may be draggedfalse
, which indicates that the element may not be dragged.
Implementation
Attribute<GlobalHTMLAttribute> draggable(String value) {
return Attribute('draggable', value);
}