Event.allSuites constructor

const Event.allSuites({
  1. required int time,
  2. required int count,
})

Factory constructor for allSuites event

Implementation

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

  /// The total number of suites that will be loaded.
  required int count,
}) = _AllSuites;