getPopup method

Future<String> getPopup(
  1. TabDetails details
)

Gets the html document set as the popup for this action.

Implementation

Future<String> getPopup(TabDetails details) async {
  var $res =
      await promiseToFuture<String>($js.chrome.action.getPopup(details.toJS));
  return $res;
}