UpdateProfileModel.fromJson constructor

UpdateProfileModel.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory UpdateProfileModel.fromJson(Map<String, dynamic> json) {
  return UpdateProfileModel(
    responseCode: json["Response_Code"] ?? "",
    message: json["Message"] ?? "",
  );
}