DoneTestEvent constructor

const DoneTestEvent({
  1. required bool? success,
  2. required int time,
})

An event indicating the result of the entire test run. This will be the final event emitted by the reporter.

Implementation

const DoneTestEvent({
  required this.success,
  required super.time,
}) : super(type: 'done');