UserFeedback.fromJson constructor
Implementation
UserFeedback.fromJson(Map<String, dynamic> json)
: id = json['id'],
projectId = json['projectid'],
title = json['title'],
description = json['description'],
email = json['email'],
feedbackType = json['feedback_type'],
attachments = json['attachments'],
createdDate = json['created_date'],
modifiedDate = json['modified_date'],
expiryDate = json['expiry_date'];