VendorEntity constructor

VendorEntity({
  1. required int id,
  2. String? name,
  3. String? description,
  4. int? amountOfProducts,
  5. bool forTesting = true,
  6. bool active = true,
})

Implementation

VendorEntity({
  required this.id,
  this.name,
  this.description,
  this.amountOfProducts,
  this.logo,
  this.forTesting = true,
  this.active = true,
});