JoinCallRequest constructor

JoinCallRequest({
  1. bool? create,
  2. CallRequest? data,
  3. required String location,
  4. int? membersLimit,
  5. String? migratingFrom,
  6. bool? notify,
  7. bool? ring,
  8. bool? video,
})

Returns a new JoinCallRequest instance.

Implementation

JoinCallRequest({
  this.create,
  this.data,
  required this.location,
  this.membersLimit,
  this.migratingFrom,
  this.notify,
  this.ring,
  this.video,
});