TestReport constructor

TestReport({
  1. int? id,
  2. String? name,
  3. String? description,
  4. bool? notifyUser,
  5. bool? notifyLink,
  6. bool? notifyAttachment,
  7. bool? notifyAttachmentHtmlFormat,
  8. bool? notifyAttachmentPdfFormat,
  9. String? notifyLinkRecipients,
})

Implementation

TestReport({
  this.id,
  this.name,
  this.description,
  this.notifyUser,
  this.notifyLink,
  this.notifyAttachment,
  this.notifyAttachmentHtmlFormat,
  this.notifyAttachmentPdfFormat,
  this.notifyLinkRecipients,
});