fromJson static method
Implementation
static FeedbackJsonResult fromJson(dynamic json) {
return FeedbackJsonResult(
message: json["message"],
statusCode: json["status_code"],
feedback: BFeedback.fromJson(json["data"])
);
}
static FeedbackJsonResult fromJson(dynamic json) {
return FeedbackJsonResult(
message: json["message"],
statusCode: json["status_code"],
feedback: BFeedback.fromJson(json["data"])
);
}