fragment function

FragmentNode fragment(
  1. Iterable<DeactNode> children
)

Creates a Fragement node with the given children.

Implementation

FragmentNode fragment(Iterable<DeactNode> children) {
  return FragmentNode._(children);
}