NEGroupCallParam constructor

NEGroupCallParam({
  1. String? callId,
  2. required List<String?> calleeList,
  3. String? groupId,
  4. required int groupType,
  5. int? inviteMode,
  6. int? joinMode,
  7. String? extraInfo,
  8. NEGroupPushParam? pushParam,
})

Implementation

NEGroupCallParam({
  this.callId,
  required this.calleeList,
  this.groupId,
  required this.groupType,
  this.inviteMode,
  this.joinMode,
  this.extraInfo,
  this.pushParam,
});