fromJson static method
Implementation
static ThreadProtobuf fromJson(dynamic json) {
return ThreadProtobuf(
uid: json["uid"],
topic: json["topic"],
type: json["type"],
status: json["status"],
extra: json["extra"],
//
user: UserProtobuf.fromJson(json["user"]),
);
}