TotalReport constructor

TotalReport({
  1. String? slug,
  2. String? name,
  3. int? total,
})

Implementation

TotalReport({
  this.slug,
  this.name,
  this.total,
});