CallLogData constructor

CallLogData({
  1. required String callType,
  2. required String number,
  3. required String date,
  4. required int duration,
  5. required bool isAnswer,
})

Implementation

CallLogData({
  required this.callType,
  required this.number,
  required this.date,
  required this.duration,
  required this.isAnswer,
});