AuditRecordBean constructor

AuditRecordBean({
  1. List<AssociatedItemBean>? associatedItems,
  2. String? authorKey,
  3. String? category,
  4. List<ChangedValueBean>? changedValues,
  5. DateTime? created,
  6. String? description,
  7. String? eventSource,
  8. int? id,
  9. AssociatedItemBean? objectItem,
  10. String? remoteAddress,
  11. String? summary,
})

Implementation

AuditRecordBean(
    {List<AssociatedItemBean>? associatedItems,
    this.authorKey,
    this.category,
    List<ChangedValueBean>? changedValues,
    this.created,
    this.description,
    this.eventSource,
    this.id,
    this.objectItem,
    this.remoteAddress,
    this.summary})
    : associatedItems = associatedItems ?? [],
      changedValues = changedValues ?? [];