custom static method

Configures a custom offset for indenting child nodes in a TreeView.

Child nodes will be offset by the provided number of pixels in the tree. The value must be a non negative number.

Implementation

static TreeViewIndentationType custom(double value) {
  assert(value >= 0.0);
  return TreeViewIndentationType._internal(value);
}