remove method
Removes access to the specified permissions. If there are any problems
removing the permissions, runtime.lastError
will be set.
Implementation
Future<bool> remove(Permissions permissions) async {
var $res = await promiseToFuture<bool>(
$js.chrome.permissions.remove(permissions.toJS));
return $res;
}