Empresa constructor

Empresa({
  1. String? code,
  2. String? description,
  3. String? businessName,
  4. String? businessDoc,
  5. String? address,
  6. bool? isDisabled,
  7. String? comment,
  8. String? imageLocation,
  9. DateTime? createdAt,
  10. String? createdBy,
  11. DateTime? writeAt,
  12. String? writeBy,
})

Implementation

Empresa({
  this.code,
  this.description,
  this.businessName,
  this.businessDoc,
  this.address,
  this.isDisabled,
  this.comment,
  this.imageLocation,
  this.createdAt,
  this.createdBy,
  this.writeAt,
  this.writeBy,
});