WebView constructor

const WebView({
  1. Key? key,
  2. required String firstUrl,
  3. required WebController controller,
  4. Map<String, String> headers = const <String, String>{},
})

Implementation

const WebView(
    {super.key,
    required this.firstUrl,
    required this.controller,
    this.headers = const <String, String>{}});