parse method
Parses a model T
into a Widget.
This method should be implemented to parse a model into a widget.
The model T
is the result of the getModel method.
The BuildContext is the current build context.
Implementation
@override
Widget parse(BuildContext context, StacWebView model) {
return _WebView(model: model);
}