CallLogEntry constructor

CallLogEntry({
  1. required String id,
  2. required String number,
  3. String? contactName,
  4. DateTime? date,
  5. Duration? duration,
  6. required bool isOutgoing,
})

Implementation

CallLogEntry({
  required this.id,
  required this.number,
  this.contactName,
  this.date,
  this.duration,
  required this.isOutgoing,
});