LogReport constructor

LogReport({
  1. int? mainValue = 0,
  2. int? mainIndex = 0,
  3. String? type,
  4. int? subValue = 0,
  5. int? subIndex = 0,
  6. int? totalMin = 0,
  7. String? finalValue = "",
})

Implementation

LogReport(
    {this.mainValue = 0,
    this.mainIndex = 0,
    this.type,
    this.subValue = 0,
    this.subIndex = 0,
    this.totalMin = 0,
    this.finalValue = ""});