TestReportSummary constructor

TestReportSummary({
  1. required int durationInNanoSeconds,
  2. required Map<String, int> statusCounts,
  3. required int total,
})

Implementation

TestReportSummary({
  required this.durationInNanoSeconds,
  required this.statusCounts,
  required this.total,
});