copy method

Return a deep copy of the node.

Implementation

@override
DartBlockValueTreeBooleanConstantNode copy() {
  return DartBlockValueTreeBooleanConstantNode.init(
    value,
    parent,
    specificNodeKey: nodeKey,
  );
}