Event.print constructor
const
Event.print({})
Factory constructor for print event
Implementation
const factory Event.print({
/// The time (in milliseconds) that has elapsed since the test runner started.
required int time,
/// The ID of the test that printed a message.
@JsonKey(name: 'testID') required int testId,
/// The type of message being printed.
required String messageType,
/// The message that was printed.
required String message,
}) = _Print;