pageNode function

Node pageNode({
  1. required Iterable<Node> children,
  2. Attributes attributes = const {},
})

Implementation

Node pageNode({
  required Iterable<Node> children,
  Attributes attributes = const {},
}) {
  return Node(
    type: PageBlockKeys.type,
    children: children,
    attributes: attributes,
  );
}