events property
JSEvents
get
events
The chrome.events
namespace contains common types used by APIs
dispatching events to notify you when something interesting happens.
Implementation
JSEvents get events {
var eventsNullable = this.eventsNullable;
if (eventsNullable == null) {
throw ApiNotAvailableException('chrome.events');
}
return eventsNullable;
}