childWidget property

Widget? childWidget
final

[final Widget? childWidget;[ is declaring an optional instance variable [childWidget[ of type [Widget[. This variable can be used to pass a child widget to the [InAppWebView[ widget, which can be displayed alongside the [WebView[ widget. The [?[ after the type [Widget[ indicates that the variable can be [null[.

Implementation

final Widget? childWidget;