removeTree method

Future<void> removeTree(
  1. String id
)

Recursively removes a bookmark folder.

Implementation

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