DartTestSuiteEvent.fromJson constructor

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

Implementation

factory DartTestSuiteEvent.fromJson(Map<String, dynamic> json) =>
    DartTestSuiteEvent(
      suite: DartTestEntitySuite.fromJson(json["suite"]),
      type: json["type"],
      time: json["time"],
    );