BookmarksOnChangedEvent class
Fired when a bookmark or folder changes. <b>Note:</b> Currently, only title and url changes trigger this.
class BookmarksOnChangedEvent {
 final String id;
 final Map changeInfo;
 BookmarksOnChangedEvent(this.id, this.changeInfo);
}
Constructors
new BookmarksOnChangedEvent(String id, Map changeInfo) #
Creates a new Object instance.
Object instances have no meaningful state, and are only useful
through their identity. An Object instance is equal to itself
only.
docs inherited from Object 
BookmarksOnChangedEvent(this.id, this.changeInfo);