Report constructor

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

Factory constructor to create a Report

Implementation

factory Report({
  /// The Suites in this report
  required Iterable<Suite> suites,

  /// The optional timestamp of the tests
  DateTime? timestamp,
}) = _Report;