DartTestTestDoneEvent.fromJson constructor

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

Implementation

factory DartTestTestDoneEvent.fromJson(Map<String, dynamic> json) =>
    DartTestTestDoneEvent(
      testID: json["testID"],
      result: json["result"],
      hidden: json["hidden"],
      skipped: json["skipped"],
      type: json["type"],
      time: json["time"],
    );