onMixedFirstAudioFrame method
@hidden for internal use only
Implementation
FutureOr<void> onMixedFirstAudioFrame(dynamic taskId) async {
if ($instance == null || $instance is! IClientMixedStreamObserver) {
return;
}
return ($instance as IClientMixedStreamObserver)
.onMixedFirstAudioFrame
?.call(taskId.toString());
}