fromJsonV2 static method
Implementation
static RequestThreadResult fromJsonV2(dynamic json) {
return RequestThreadResult(
message: json["message"],
statusCode: json["status_code"],
msg: Message.fromJsonThreadWorkGroupV2(json["data"]));
}