CallLogEntry constructor

CallLogEntry({
  1. required String name,
  2. required String number,
  3. required String type,
  4. required String duration,
  5. required String dateTime,
  6. required String simName,
})

Implementation

CallLogEntry({
  required this.name,
  required this.number,
  required this.type,
  required this.duration,
  required this.dateTime,
  required this.simName,
});