dragsTree property

bool get dragsTree

Gets or sets whether moving or copying a node also includes all of the node's tree children and their descendants, along with the links to those additional nodes. By default this property is false.

In typical DraggingTool operation this is set via DraggingTool#dragsTree.

Implementation

_i2.bool get dragsTree => _i4.getProperty(
      this,
      'dragsTree',
    );
set dragsTree (bool value)

Implementation

set dragsTree(_i2.bool value) {
  _i4.setProperty(
    this,
    'dragsTree',
    value,
  );
}