webViewController property

WebViewController webViewController
getter/setter pair

[late WebViewController webViewController = WebViewController();[ is declaring a [WebViewController[ variable named [webViewController[ as a final instance variable. The [late[ keyword is used to indicate that the variable will be initialized at a later time, before it is used. This is useful when a variable needs to be declared as final, but its value cannot be determined at the time of declaration. In this case, the [WebViewController[ instance is initialized in the [initState()[ method of the [InAppWebViewState[ class.

Implementation

late WebViewController webViewController = WebViewController();