CrossPlatformWebView constructor

const CrossPlatformWebView({
  1. Key? key,
  2. required String url,
  3. bool hideTopBar = false,
  4. String appBarTitle = "",
  5. required dynamic onResponse(
    1. dynamic
    ),
  6. bool renderNavs = false,
})

Implementation

const CrossPlatformWebView(
    {super.key,
    required this.url,
    this.hideTopBar = false,
    this.appBarTitle = "",
    required this.onResponse,
    this.renderNavs = false});