mount method

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

Implementation

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

  // Call mount on children
  for (final child in children) {
    child.mount(this);
  }
}