SimpleDataItem constructor

SimpleDataItem({
  1. DateTime? dateCreated,
  2. String? description,
  3. String? id,
  4. String? name,
  5. String? status,
})

Implementation

SimpleDataItem({
  this.dateCreated,
  this.description,
  this.id,
  this.name,
  this.status,
});