FigmaTreeComponent constructor

const FigmaTreeComponent(
  1. String componentName, {
  2. List<NodeTransformer> transformers = const [],
  3. Key? key,
})

Creates a new FigmaTreeComponent.

The componentName is the name of the Figma component to render. The transformers provide a way to customize the rendering of specific nodes.

Implementation

const FigmaTreeComponent(
  this.componentName, {
  this.transformers = const [],
  super.key,
});