CallResponse constructor
CallResponse({
- required bool backstage,
- List<
String> blockedUserIds = const [], - required String cid,
- required DateTime createdAt,
- required UserResponse createdBy,
- required String currentSessionId,
- Map<
String, Object> custom = const {}, - required EgressResponse egress,
- DateTime? endedAt,
- required String id,
- required CallIngressResponse ingress,
- int? joinAheadTimeSeconds,
- required bool recording,
- CallSessionResponse? session,
- required CallSettingsResponse settings,
- DateTime? startsAt,
- String? team,
- ThumbnailResponse? thumbnails,
- required bool transcribing,
- required String type,
- required DateTime updatedAt,
Returns a new CallResponse instance.
Implementation
CallResponse({
required this.backstage,
this.blockedUserIds = const [],
required this.cid,
required this.createdAt,
required this.createdBy,
required this.currentSessionId,
this.custom = const {},
required this.egress,
this.endedAt,
required this.id,
required this.ingress,
this.joinAheadTimeSeconds,
required this.recording,
this.session,
required this.settings,
this.startsAt,
this.team,
this.thumbnails,
required this.transcribing,
required this.type,
required this.updatedAt,
});