loadHtmlString method
Loads the supplied HTML string.
The baseUrl
parameter is used when resolving relative URLs within the
HTML string.
Implementation
@override
Future<void> loadHtmlString(String html, {String? baseUrl}) {
_callInfoList = [];
return super.loadHtmlString(html, baseUrl: baseUrl);
}