load static method
Implementation
static load(String? url, String? body,
{WebViewController? tourWebViewController}) {
if (url != null) {
WebviewUtil.loadUrl(url);
}
if (body.toString().startsWith(bodyStartsWithHtmlString)) {
WebviewUtil.loadHtml(body, tourWebViewController: tourWebViewController);
}
}