createNode method
Implementation
FNode createNode(String type, [Map<String, dynamic> options = const {}]) {
final definition = _nodes[type];
if (definition == null) {
throw StateError('No plugin registered for node type "$type"');
}
return definition.create(options);
}