children property

List<Node?>? get children

The children of the container

Implementation

List<figma.Node?>? get children {
  return getCached("children", () {
    if (node is figma.Frame) return (node as figma.Frame).children;
    if (node is figma.Instance) return (node as figma.Instance).children;
    if (node is figma.Group) return (node as figma.Group).children;
    return null;
  });
}