stopSubtitle method

FutureOr<int> stopSubtitle()

@valid since 3.52 @detail api @author qiaoxingwang @brief 关闭字幕。
调用该方法后,用户会收到 rtcRoom:onSubtitleStateChanged:errorCode:errorMessage:{@link #ByteRTCRoomDelegate#rtcRoom:onSubtitleStateChanged:errorCode:errorMessage} 回调,通知字幕是否关闭。 @return - 0: 调用成功。 - !0: 调用失败。

Implementation

FutureOr<int> stopSubtitle() async {
  return await nativeCall('stopSubtitle', []);
}