defaultTreeRowBuilder static method

TreeRow defaultTreeRowBuilder(
  1. TreeViewNode<Object?> node
)

Returns the fixed height, default TreeRow for rows in the tree, which is 40 pixels.

Used by TreeView.treeRowBuilder.

Implementation

static TreeRow defaultTreeRowBuilder(TreeViewNode<Object?> node) {
  return const TreeRow(
    extent: FixedTreeRowExtent(_kDefaultRowExtent),
  );
}