setRtcRegion method

Future<void> setRtcRegion(
  1. String rtcRegion, {
  2. String? reason,
})

Sets the RTC region of the voice channel.

await channel.setRtcRegion('us-west');

Implementation

Future<void> setRtcRegion(String rtcRegion, {String? reason}) =>
    _methods.setRtcRegion(rtcRegion, reason);