setRtcRegion method

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

Implementation

Future<void> setRtcRegion(String rtcRegion, String? reason) async {
  await dataStoreChannel.updateChannel(
    id: id,
    reason: reason,
    payload: {'rtc_region': rtcRegion},
  );
}