DataItem constructor

DataItem({
  1. String? id,
  2. String? displayName,
  3. String? name,
  4. String? description,
  5. String? createdBy,
  6. String? status,
  7. DateTime? dateCreated,
  8. DateTime? dateUpdated,
  9. int? itemSequence,
})

Implementation

DataItem({
  this.id,
  this.displayName,
  this.name,
  this.description,
  this.createdBy,
  this.status,
  this.dateCreated,
  this.dateUpdated,
  this.itemSequence,
});