RTWebview constructor

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

Implementation

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