DartTestErrorEvent.fromJson constructor

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

Implementation

factory DartTestErrorEvent.fromJson(Map<String, dynamic> json) =>
    DartTestErrorEvent(
      testID: json["testID"],
      error: json["error"],
      stackTrace: json["stackTrace"],
      isFailure: json["isFailure"],
      type: json["type"],
      time: json["time"],
    );