deleteUrl method

Future<void> deleteUrl(
  1. UrlDetails details
)

Removes all occurrences of the given URL from the history.

Implementation

Future<void> deleteUrl(UrlDetails details) async {
  await promiseToFuture<void>($js.chrome.history.deleteUrl(details.toJS));
}