DCFElement constructor
DCFElement({})
Implementation
DCFElement({
required this.type,
super.key,
required this.props,
this.children = const [],
}) {
// Set parent reference for children
for (var child in children) {
child.parent = this;
}
}