WebView constructor

const WebView({
  1. Key? key,
  2. required String src,
  3. required double? width,
  4. required double? height,
  5. required OnLoaded? onLoaded,
})

Implementation

const WebView({
  Key? key,
  required this.src,
  required this.width,
  required this.height,
  required this.onLoaded,
}) : super(key: key);