Event.testStart constructor

const Event.testStart({
  1. required int time,
  2. required Test test,
})

Factory constructor for testStart event

Implementation

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

  /// Metadata about the Test that started.
  required Test test,
}) = _TestStart;