getCallId method

FutureOr<String> getCallId()

@detail api @valid since 3.60. @author xuyiling @brief Gets call ID. Call this method after joining an RTC room. After creating a room, a call ID is generated to identify the call for this room. @return Call ID.

Implementation

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