getPopup method
Gets the html document set as the popup for this page action.
Implementation
Future<String> getPopup(TabDetails details) async {
var $res = await promiseToFuture<String>(
$js.chrome.pageAction.getPopup(details.toJS));
return $res;
}