RTWebview constructor

const RTWebview({
  1. Key? key,
  2. required String url,
  3. RTWebviewChannel? channel,
  4. bool alwaysCanPop = true,
  5. InAppWebViewController? controller,
  6. dynamic shouldOverrideUrlLoading(
    1. InAppWebViewController controller,
    2. NavigationAction navigationAction
    )?,
})

Implementation

const RTWebview({
  super.key,
  required this.url,
  this.channel,
  this.alwaysCanPop = true,
  this.controller,
  this.shouldOverrideUrlLoading,
});