fromJson static method

RequestThreadResult fromJson(
  1. dynamic json
)

Implementation

static RequestThreadResult fromJson(dynamic json) {
  return RequestThreadResult(
      message: json["message"],
      code: json["code"],
      data: MessageProtobuf.fromJson(json["data"]));
}