CallParam constructor

CallParam({
  1. required ChannelType channelType,
  2. required String requestId,
  3. required String accountId,
  4. String? channelName,
  5. String? channelExt,
  6. int? selfUid,
  7. bool? offlineEnable,
  8. SignallingPushConfig? pushConfig,
  9. String? customInfo,
})

Implementation

CallParam(
    {required this.channelType,
    required this.requestId,
    required this.accountId,
    this.channelName,
    this.channelExt,
    this.selfUid,
    this.offlineEnable,
    this.pushConfig,
    this.customInfo});