AuditBase constructor

AuditBase({
  1. DateTime? createdDate,
  2. String? createdBy,
  3. DateTime? modifiedDate,
  4. String? modifiedBy,
  5. DateTime? deletedDate,
  6. String? deletedBy,
})

Implementation

AuditBase(
    {this.createdDate,
    this.createdBy,
    this.modifiedDate,
    this.modifiedBy,
    this.deletedDate,
    this.deletedBy});