PrefrenceDataResponse.fromJson constructor
Implementation
PrefrenceDataResponse.fromJson(Map<String, dynamic> json) {
success = json['success'];
statusCode = json['status_code'];
message = json['message'];
result =
json['result'] != null ? new Result.fromJson(json['result']) : null;
time = json['time'];
}