Vendor constructor

Vendor({
  1. int? id,
  2. DateTime? dbDateCreated,
  3. DateTime? dbDateUpdated,
  4. String? code,
  5. String? externalCode,
  6. String? name,
  7. VendorStatus? status,
  8. String? email,
  9. VendorKind? kind,
  10. String? usState,
})

Implementation

Vendor({
  this.id,
  this.dbDateCreated,
  this.dbDateUpdated,
  this.code,
  this.externalCode,
  this.name,
  this.status,
  this.email,
  this.kind,
  this.usState,
});