Returns the title of the currently loaded page.
@override Future<String?> getTitle() async { if (jsBridge.hasReady) { return jsBridge.evalJavaScript<String>('window.document.title'); } return null; }