DartTestGroupEvent.fromJson constructor

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

Implementation

factory DartTestGroupEvent.fromJson(Map<String, dynamic> json) =>
    DartTestGroupEvent(
      group: DartTestEntityGroup.fromJson(json["group"]),
      type: json["type"],
      time: json["time"],
    );