Vendor constructor
Vendor({
- int? id,
- DateTime? dbDateCreated,
- DateTime? dbDateUpdated,
- String? code,
- String? externalCode,
- String? name,
- VendorStatus? status,
- String? email,
- VendorKind? kind,
- String? usState,
Implementation
Vendor({
this.id,
this.dbDateCreated,
this.dbDateUpdated,
this.code,
this.externalCode,
this.name,
this.status,
this.email,
this.kind,
this.usState,
});