Returns the title of the currently loaded page.
@override Future<String> getTitle() async { final iFrame = _webWebViewParams.iFrame; final iDocument = iFrame.contentDocument; return iDocument?.title ?? ''; }