WebViewWrapper constructor

const WebViewWrapper({
  1. Key? key,
  2. required String url,
  3. required Map<String, dynamic> parametros,
  4. required String hash,
  5. required bool shouldClose,
})

Implementation

const WebViewWrapper({
  super.key,
  required this.url,
  required this.parametros,
  required this.hash,
  required this.shouldClose,
});