SupplierBody constructor

SupplierBody({
  1. String? name,
  2. List<String>? brandIds,
  3. List<String>? productGroupIds,
  4. String? storeId,
})

Implementation

SupplierBody({
  this.name,
  this.brandIds,
  this.productGroupIds,
  this.storeId,
});