Call constructor

const Call({
  1. required String domain,
  2. required String topic,
  3. CallType type = CallType.video,
  4. Location? location,
  5. int? targetOperatorId,
  6. Map<String, dynamic> dynamicAttrs = const {},
})

Implementation

const Call({
  required this.domain,
  required this.topic,
  this.type = CallType.video,
  this.location,
  this.targetOperatorId,
  this.dynamicAttrs = const {},
});