fromJson static method
Implementation
static RoomStatusEvent fromJson(Map<String, dynamic> json) {
return RoomStatusEvent(status: json["status"], message: json["message"]);
}
static RoomStatusEvent fromJson(Map<String, dynamic> json) {
return RoomStatusEvent(status: json["status"], message: json["message"]);
}