ExitTestEvent constructor

const ExitTestEvent({
  1. required int time,
  2. required int exitCode,
})

An event emitted when a test completes. The exitCode attribute indicates the result of the test process.

Implementation

const ExitTestEvent({required super.time, required this.exitCode})
    : super(type: 'exit');