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