CallLog constructor

CallLog({
  1. String? sessionId,
  2. String? mid,
  3. String? receiverType,
  4. double? totalAudioMinutes,
  5. double? totalVideoMinutes,
  6. double? totalDurationInMinutes,
  7. String? totalDuration,
  8. bool? hasRecording,
  9. String? mode,
  10. int? startedAt,
  11. String? status,
  12. String? type,
  13. int? totalParticipants,
  14. int? endedAt,
  15. int? initiatedAt,
  16. CallEntity? initiator,
  17. CallEntity? receiver,
  18. List<Participants>? participants,
  19. List<Recordings>? recordings,
})

Implementation

CallLog(
    {this.sessionId,
    this.mid,
    this.receiverType,
    this.totalAudioMinutes,
    this.totalVideoMinutes,
    this.totalDurationInMinutes,
    this.totalDuration,
    this.hasRecording,
    this.mode,
    this.startedAt,
    this.status,
    this.type,
    this.totalParticipants,
    this.endedAt,
    this.initiatedAt,
    this.initiator,
    this.receiver,
    this.participants,
    this.recordings});