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