AudioEvent constructor
const
AudioEvent({
- required AudioEventType eventType,
- Duration? duration,
- String? logMessage,
- bool? isPrepared,
Creates an instance of AudioEvent.
The eventType
argument is required.
Implementation
const AudioEvent({
required this.eventType,
this.duration,
this.logMessage,
this.isPrepared,
});