AgoraConnectionData constructor

AgoraConnectionData({
  1. required String appId,
  2. required String channelName,
  3. int uid = 0,
  4. String? tokenUrl,
  5. String? tempToken,
  6. List<AreaCode> areaCode = const [AreaCode.GLOB],
})

Implementation

AgoraConnectionData({
  required this.appId,
  required this.channelName,
  this.uid = 0,
  this.tokenUrl,
  this.tempToken,
  this.areaCode = const [AreaCode.GLOB],
});