mount method

  1. @override
void mount(
  1. DCFComponentNode? parent
)
override

Implementation

@override
void mount(DCFComponentNode? parent) {
  this.parent = parent;

  // Ensure the component has rendered
  final node = renderedNode;

  // Mount the rendered content
  node.mount(this);
}