CallLogModel constructor

CallLogModel({
  1. List<CallLog>? data,
  2. int? totalPages,
})

Constructor for CallLogModel.

Initializes a new instance of the CallLogModel class with optional parameters for the list of call logs (data) and the total number of pages (totalPages).

Implementation

CallLogModel({
  this.data,
  this.totalPages,
});