WaView constructor
WaView({
- required WebRequest rq,
- required String widget,
- Map<
String, Object?> params = const {},
Creates an instance of WaView.
The constructor requires a WebRequest object rq
and a widget
path,
with an optional params
map that can be used to pass additional data
to the view during rendering.
Implementation
WaView({
required this.rq,
required this.widget,
this.params = const {},
});