events property
Map of JavaScript events and callback functions to register.
A JavaScript event is the full namespace path to the object with the last
part to be the actual event name. For example Highcharts.Chart.load
represents a listener on Highcharts.Chart
for the load
event.
Implementation
final Map<String, void Function(Object?)> events;