fromJson static method
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"],
);
}