getEmbedWebView function

Widget getEmbedWebView(
  1. String srcDoc, [
  2. double? width,
  3. double? height
])

Implementation

Widget getEmbedWebView(String srcDoc, [double? width, double? height]) =>
    FlutterWebview4AndroidIos(
      webViewContent: srcDoc,
      width: width ?? 0,
    );