RecipientModel constructor

RecipientModel(
  1. int id,
  2. int version,
  3. String number,
  4. String? subject,
  5. double? value,
  6. String? currencyCode,
  7. bool fyi,
  8. Map<String, dynamic> data,
  9. String form,
  10. List<String>? actions,
  11. List<Sibling> recipients,
  12. List<Comment> comments,
  13. List<Entry> cubes,
  14. List<Attachment> attachments,
  15. DateTime? viewed,
  16. int unreadComments,
  17. int documentId,
  18. String folderId,
  19. bool flag,
  20. DateTime received,
  21. bool read,
  22. bool draft,
  23. bool pending,
  24. bool escalated,
  25. String? summary,
  26. dynamic extra,
)

Implementation

RecipientModel(
    int id,
    int version,
    String number,
    String? subject,
    double? value,
    String? currencyCode,
    this.fyi,
    this.data,
    this.form,
    this.actions,
    this.recipients,
    this.comments,
    this.cubes,
    this.attachments,
    this.viewed,
    this.unreadComments,
    this.documentId,
    this.folderId,
    bool flag,
    DateTime received,
    bool read,
    this.draft,
    this.pending,
    this.escalated,
    String? summary,
    this.extra)
    : super(
        id,
        version,
        number,
        subject,
        value,
        currencyCode,
        flag,
        received,
        read,
        summary,
      );