DartTestTestStartEvent.fromJson constructor

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

Implementation

factory DartTestTestStartEvent.fromJson(Map<String, dynamic> json) =>
    DartTestTestStartEvent(
      test: DartTestEntityTest.fromJson(json["test"]),
      type: json["type"],
      time: json["time"],
    );