startPlayAnotherRoomAudioVideo method

Future<void> startPlayAnotherRoomAudioVideo(
  1. String roomID,
  2. String userID, {
  3. String userName = '',
})

Implementation

Future<void> startPlayAnotherRoomAudioVideo(
  String roomID,
  String userID, {
  String userName = '',
}) async {
  return ZegoUIKitCore.shared.startPlayAnotherRoomAudioVideo(
    roomID,
    userID,
    userName,
  );
}