TicketStatisticsDTO constructor

TicketStatisticsDTO({
  1. int? total,
  2. int? active,
  3. int? solved,
  4. int? solvedInTime,
  5. double? percentageSolvedInTime,
})

Returns a new TicketStatisticsDTO instance.

Implementation

TicketStatisticsDTO({
  this.total,
  this.active,
  this.solved,
  this.solvedInTime,
  this.percentageSolvedInTime,
});