DebugTestEvent.fromJson constructor

DebugTestEvent.fromJson(
  1. Map<String, dynamic> json
)

A debug event is emitted after (although not necessarily directly after) a SuiteTestEvent, and includes information about how to debug that suite. It's only emitted if the --debug flag is passed to the test runner.

Implementation

factory DebugTestEvent.fromJson(Map<String, dynamic> json) =>
    _$DebugTestEventFromJson(json);