VendorsRequest constructor

VendorsRequest({
  1. int? limit,
  2. int? offset,
  3. String? orderBy,
  4. String? sortDirection,
  5. String? vendorName,
})

Implementation

VendorsRequest({
  this.limit,
  this.offset,
  this.orderBy,
  this.sortDirection,
  this.vendorName,
});