JoinCallRequest constructor

JoinCallRequest({
  1. bool? create,
  2. CallRequest? data,
  3. bool? e2ee,
  4. bool? hintHighScaleLivestreamPublisher,
  5. required String location,
  6. int? membersLimit,
  7. String? migratingFrom,
  8. List<String> migratingFromList = const [],
  9. bool? notify,
  10. bool? ring,
  11. bool? video,
})

Returns a new JoinCallRequest instance.

Implementation

JoinCallRequest({
  this.create,
  this.data,
  this.e2ee,
  this.hintHighScaleLivestreamPublisher,
  required this.location,
  this.membersLimit,
  this.migratingFrom,
  this.migratingFromList = const [],
  this.notify,
  this.ring,
  this.video,
});