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