Event.unknown constructor

const Event.unknown({
  1. required int time,
})

Fallback event in the case that a new event is added to the protocol.

Implementation

const factory Event.unknown({
  /// The time (in milliseconds) that has elapsed since the test runner started.
  required int time,
}) = _Unknown;