onRecordAudioFrame method
@detail callback @author wangjunzheng @brief 返回麦克风录制的音频数据 @param audioFrame 音频数据, 详见: ByteRTCAudioFrame{@link #ByteRTCAudioFrame}
Implementation
FutureOr<void> onRecordAudioFrame(dynamic audioFrame) async {
if ($instance == null || $instance is! IAudioFrameObserver) {
return;
}
return ($instance as IAudioFrameObserver).onRecordAudioFrame?.call(
packObject(
audioFrame,
() => AudioFrame.fromMap(AudioFrame.deepPackedMapValues(
AudioFrame.mapMemberToConstructorParams(audioFrame)))));
}