onMixedFirstAudioFrame method
@hidden for internal use only @detail callback @author liujingchao @brief Used for reporting events during pushing a single stream to CDN. @param taskID Task ID
Implementation
FutureOr<void> onMixedFirstAudioFrame(dynamic taskId) async {
if ($instance == null || $instance is! IClientMixedStreamObserver) {
return;
}
return ($instance as IClientMixedStreamObserver)
.onMixedFirstAudioFrame
?.call(taskId.toString());
}