onEvent property

Stream<Map<T, dynamic>> onEvent

The events this ad throws. Listen to it using:

ad.onEvent.listen((event) {
  print(event);
});

Implementation

Stream<Map<T, dynamic>> get onEvent => onEventController.stream;