Report constructor

Report(
  1. Iterable<Suite> suites, {
  2. DateTime? timestamp,
})

Create a report with the given suites and timestamp.

Implementation

Report(Iterable<Suite> suites, {this.timestamp})
    : suites = List.unmodifiable(suites);