onDragStart property

Callback for when the user starts to drag an element

Implementation

@override
MouseEventCallback? get onDragStart =>
    (props[_$key__onDragStart___$UbiquitousDomPropsMixin] ?? null)
        as MouseEventCallback?;
  1. @override
void onDragStart=(MouseEventCallback? value)

Callback for when the user starts to drag an element

Implementation

@override
set onDragStart(MouseEventCallback? value) =>
    props[_$key__onDragStart___$UbiquitousDomPropsMixin] = value;