Event.suite constructor

const Event.suite({
  1. required int time,
  2. required Suite suite,
})

Factory constructor for suite event

Implementation

const factory Event.suite({
  /// The time (in milliseconds) that has elapsed since the test runner started.
  required int time,

  /// Metadata about the Suite.
  required Suite suite,
}) = _Suite;