stopSubtitle method
@hidden currently not available
@detail api
@author qiaoxingwang
@brief Turns off subtitles.
After calling this method, you will receive the rtcRoom:onSubtitleStateChanged:errorCode:errorMessage:{@link #ByteRTCRoomDelegate#rtcRoom:onSubtitleStateChanged:errorCode:errorMessage} to inform you of whether subtitles are off.
@return
- 0: Success.
- !0: Failure.
Implementation
FutureOr<int> stopSubtitle() async {
return await nativeCall('stopSubtitle', []);
}