onMixedFirstAudioFrame method
@hidden for internal use only @detail callback @author liujingchao @brief 客户端合流音频首帧回调 @param taskID 任务 ID
Implementation
FutureOr<void> onMixedFirstAudioFrame(dynamic taskId) async {
if ($instance == null || $instance is! IClientMixedStreamObserver) {
return;
}
return ($instance as IClientMixedStreamObserver)
.onMixedFirstAudioFrame
?.call(taskId.toString());
}