BaseWebScreen constructor

BaseWebScreen({
  1. Key? key,
  2. GlobalKey<BaseWebViewState<BaseWebView>>? globalKey,
  3. required BaseConfiguration configuration,
})

Implementation

BaseWebScreen({
  super.key,
  GlobalKey<BaseWebViewState>? globalKey,
  required this.configuration,
}) : globalKey = globalKey ?? GlobalKey<BaseWebViewState>();