Event.group constructor

const Event.group({
  1. required int time,
  2. required Group group,
})

Factory constructor for group event

Implementation

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

  /// Metadata about the Group.
  required Group group,
}) = _Group;