Sucursale constructor

Sucursale({
  1. String? code,
  2. String? description,
  3. String? address,
  4. String? companyCode,
  5. bool? isDisabled,
  6. DateTime? createdAt,
  7. String? createdBy,
  8. DateTime? writeAt,
  9. String? writeBy,
})

Implementation

Sucursale({
  this.code,
  this.description,
  this.address,
  this.companyCode,
  this.isDisabled,
  this.createdAt,
  this.createdBy,
  this.writeAt,
  this.writeBy,
});