TimeStampedEntity constructor

TimeStampedEntity({
  1. String? createdBy,
  2. String? updatedBy,
  3. DateTime? dateCreated,
  4. DateTime? dateUpdated,
  5. bool? deleted,
  6. String? id,
})

Implementation

TimeStampedEntity({
  this.createdBy,
  this.updatedBy,
  this.dateCreated,
  this.dateUpdated,
  this.deleted,
  this.id,
});