PostAndReviewsModelResponse.fromJson constructor
Implementation
factory PostAndReviewsModelResponse.fromJson(Map<String, dynamic> json) =>
PostAndReviewsModelResponse(
code: json["code"],
status: json["status"],
message: json["message"],
data: json["data"] == null ? null : Data.fromJson(json["data"]),
);