stopSubtitle method

FutureOr<int> stopSubtitle()

@hidden currently not available @detail api @author qiaoxingwang @brief Turns off subtitles.
After calling this method, you will receive the onSubtitleStateChanged{@link #IRTCRoomEventHandler#onSubtitleStateChanged} to inform you of whether subtitles are off. @return - 0: Success. - < 0: Failure. See ReturnStatus{@link #ReturnStatus} for more details.

Implementation

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