BusinessDataItem constructor

BusinessDataItem({
  1. String? businessId,
  2. String? createdBy,
  3. DateTime? dateCreated,
  4. DateTime? dateUpdated,
  5. bool? deleted,
  6. String? description,
  7. String? id,
  8. String? name,
  9. String? displayName,
  10. String? status,
  11. String? updatedBy,
  12. bool? enabled,
  13. int? indexNo = 0,
})

Implementation

BusinessDataItem({
  this.businessId,
  this.createdBy,
  this.dateCreated,
  this.dateUpdated,
  this.deleted,
  this.description,
  this.id,
  this.name,
  this.displayName,
  this.status,
  this.updatedBy,
  this.enabled,
  this.indexNo = 0,
}) {
  deviceName = Platform.localHostname;
}