fromJson static method

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

Implementation

static RoomContainer fromJson(Map<String, dynamic> json) {
  return RoomContainer(
    id: json["id"],
    image: json["image"],
    manifest: json["manifest"],
    startedBy: ParticipantInfo(id: json["started_by"]["id"], name: json["started_by"]["name"]),
    state: json["state"],
  );
}