dragAndDropController property

TreeDragAndDropController<T>? get dragAndDropController

An optional interface to implement drag and drop in the tree view.

Implementation

_i3.TreeDragAndDropController<T>? get dragAndDropController =>
    _i5.getProperty(
      this,
      'dragAndDropController',
    );
set dragAndDropController (TreeDragAndDropController<T>? value)

Implementation

set dragAndDropController(_i3.TreeDragAndDropController<T>? value) {
  _i5.setProperty(
    this,
    'dragAndDropController',
    value ?? _i6.undefined,
  );
}