WebView constructor

const WebView({
  1. Key? key,
  2. required String firstUrl,
  3. required WebController controller,
})

Implementation

const WebView({
  super.key,
  required this.firstUrl,
  required this.controller,
});