create method
create the widget given a WidgetData type
data the widget data
environment the current Environment
context the BuildContext
Implementation
@override
Widget create(SheetWidgetData data, Environment environment, BuildContext context) {
return DynamicWidget(key: ValueKey(data.id), model: data.children[0], meta: typeRegistry[data.children[0].type]);
}