CallSessionResponse constructor
CallSessionResponse({
- Map<
String, DateTime> acceptedBy = const {}, - required int anonymousParticipantCount,
- DateTime? endedAt,
- required String id,
- DateTime? liveEndedAt,
- DateTime? liveStartedAt,
- Map<
String, DateTime> missedBy = const {}, - List<
CallParticipantResponse> participants = const [], - Map<
String, int> participantsCountByRole = const {}, - Map<
String, DateTime> rejectedBy = const {}, - DateTime? startedAt,
- DateTime? timerEndsAt,
Returns a new CallSessionResponse instance.
Implementation
CallSessionResponse({
this.acceptedBy = const {},
required this.anonymousParticipantCount,
this.endedAt,
required this.id,
this.liveEndedAt,
this.liveStartedAt,
this.missedBy = const {},
this.participants = const [],
this.participantsCountByRole = const {},
this.rejectedBy = const {},
this.startedAt,
this.timerEndsAt,
});