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