CallParam constructor

CallParam({
  1. required String accId,
  2. String? extraInfo,
  3. String? rtcChannelName,
  4. String? globalExtraCopy,
  5. required CallType callType,
  6. CallPushConfig? pushConfig,
})

Implementation

CallParam({
  required this.accId,
  this.extraInfo,
  this.rtcChannelName,
  this.globalExtraCopy,
  required this.callType,
  this.pushConfig,
});