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