Webview constructor

const Webview({
  1. Key? key,
  2. required String url,
  3. required dynamic onClosePressed(),
})

Implementation

const Webview({
  super.key,
  required this.url,
  required this.onClosePressed,
});