getNativeHandle method
@detail api
@brief Get IRTCEngine in C++ layer.
@return
- >0:Success. Return the address of IRTCEngine in C++ layer.
- NULL:Failure.
@note In some scenarios, getting and working with IRTCEngine in C++ layer has much higher execution efficiency than through the OC encapsulation layer. Typical scenarios include: custom processing of video/audio frames, encryption of audio and video calls, etc.
Implementation
FutureOr<void> getNativeHandle() async {
return await nativeCall('getNativeHandle', []);
}