Event.debug constructor

const Event.debug({
  1. required int time,
  2. @JsonKey(name: 'suiteID') required int suiteId,
  3. String? observatory,
  4. String? remoteDebugger,
})

Factory constructor for debug event

Implementation

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

  /// The suite for which debug information is reported.
  @JsonKey(name: 'suiteID') required int suiteId,

  /// The HTTP URL for the Dart Observatory, or `null` if the Observatory isn't available for this suite.
  String? observatory,

  /// The HTTP URL for the remote debugger for this suite's host page, or `null` if no remote debugger is available for this suite.
  String? remoteDebugger,
}) = _Debug;