getPopup method

Future<String> getPopup(
  1. TabDetails details
)

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;
}