LogListDto constructor

LogListDto({
  1. int? limit,
  2. int? offset,
  3. int? total,
  4. List<LogDto>? logs,
})

Implementation

LogListDto({
  this.limit,
  this.offset,
  this.total,
  this.logs,
});