remove method

Future<void> remove(
  1. String id
)

Removes a bookmark or an empty bookmark folder.

Implementation

Future<void> remove(String id) async {
  await promiseToFuture<void>($js.chrome.bookmarks.remove(id));
}