CallRingEvent constructor
CallRingEvent({
- required CallResponse call,
- required String callCid,
- required DateTime createdAt,
- List<
MemberResponse> members = const [], - required String sessionId,
- String type = 'call.ring',
- required UserResponse user,
- 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,
});