AgoraConnectionData constructor Null safety

AgoraConnectionData(
  1. {required String appId,
  2. required String channelName,
  3. int? uid,
  4. String? tokenUrl,
  5. String? tempToken,
  6. AreaCode areaCode = AreaCode.GLOB}
)

Implementation

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