DartTestDebugEvent.fromJson constructor

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

Implementation

factory DartTestDebugEvent.fromJson(Map<String, dynamic> json) =>
    DartTestDebugEvent(
      suiteID: json["suiteID"],
      observatory: json["observatory"],
      remoteDebugger: json["remoteDebugger"],
      type: json["type"],
      time: json["time"],
    );