eventTypes property

List<EventType>? eventTypes

All of the callback event types that this voice is capable of sending.

Implementation

List<EventType>? get eventTypes => _wrapped.eventTypes?.toDart
    .cast<$js.EventType>()
    .map((e) => EventType.fromJS(e))
    .toList();
void eventTypes=(List<EventType>? v)

Implementation

set eventTypes(List<EventType>? v) {
  _wrapped.eventTypes = v?.toJSArray((e) => e.toJS);
}