create method
Creates a component for the given node, or returns null.
Implementation
@override
Component? create(Node node, NodesBuilder builder) {
if (node is ElementNode && pattern.matchAsPrefix(node.tag) != null) {
return apply(node.tag, node.attributes, node.children != null ? builder.build(node.children!) : null);
}
return null;
}