IngressStartedEvent constructor

IngressStartedEvent({
  1. required String callCid,
  2. String? clientIp,
  3. String? clientName,
  4. required DateTime createdAt,
  5. required String ingressStreamId,
  6. required String publisherType,
  7. String type = 'ingress.started',
  8. required String userId,
  9. String? version,
})

Returns a new IngressStartedEvent instance.

Implementation

IngressStartedEvent({
  required this.callCid,
  this.clientIp,
  this.clientName,
  required this.createdAt,
  required this.ingressStreamId,
  required this.publisherType,
  this.type = 'ingress.started',
  required this.userId,
  this.version,
});