create method
create the widget given a WidgetData type
data the widget data
environment the current Environment
context the BuildContext
Implementation
@override
Widget create(ListWidgetData data, Environment environment, BuildContext context) {
return _ListWidget(
key: ValueKey(data.id),
data: data,
typeRegistry: typeRegistry,
environment: environment,
);
}