CallRingEvent constructor

CallRingEvent({
  1. required CallResponse call,
  2. required String callCid,
  3. required DateTime createdAt,
  4. List<MemberResponse> members = const [],
  5. required String sessionId,
  6. String type = 'call.ring',
  7. required UserResponse user,
  8. required bool video,
})

Returns a new CallRingEvent instance.

Implementation

CallRingEvent({
  required this.call,
  required this.callCid,
  required this.createdAt,
  this.members = const [],
  required this.sessionId,
  this.type = 'call.ring',
  required this.user,
  required this.video,
});