ErrorTestEvent.fromJson constructor

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

An ErrorTestEvent indicates that a test encountered an uncaught error. Note that this may happen even after the test has completed, in which case it should be considered to have failed.

Implementation

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