getMusicDetail method

FutureOr<void> getMusicDetail(
  1. NSString musicId
)

@detail api @author lihuan.wuti2ha @brief Gets music detail. @param musicId Music ID. @note After calling this API, you will receive the music detail through ktvManager:onMusicDetailResult:errorCode:{@link #ByteRTCKTVManagerDelegate#ktvManager:onMusicDetailResult:errorCode} callback.

Implementation

FutureOr<void> getMusicDetail(NSString musicId) async {
  return await nativeCall('getMusicDetail:', [musicId]);
}