removeBookmark method
remove a bookmark by its page index.
Parameters:
pageIndexThe index of the page for which the bookmark should be removed. example:
bool result = await document.removeBookmark(0);
Implementation
Future<bool> removeBookmark(int pageIndex) async {
return await _channel.invokeMethod('remove_bookmark', pageIndex);
}