getAll method

Future<Permissions> getAll()

Gets the extension's current set of permissions.

Implementation

Future<Permissions> getAll() async {
  var $res =
      await promiseToFuture<$js.Permissions>($js.chrome.permissions.getAll());
  return Permissions.fromJS($res);
}