getPopup method

Future<String> getPopup(
  1. TabDetails details
)

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