TestReport.fromJson constructor
TestReport.fromJson(
- Map<String, dynamic> json
)
Implementation
factory TestReport.fromJson(Map<String, dynamic> json) {
return TestReport(
id: json['id'],
name: json['name'],
description: json['description'],
notifyUser: json['notify_user'],
notifyLink: json['notify_link'],
notifyLinkRecipients: json['notify_link_recipients'],
notifyAttachment: json['notify_attachment'],
notifyAttachmentHtmlFormat: json['notify_attachment_html_format'],
notifyAttachmentPdfFormat: json['notify_attachment_pdf_format'],
);
}