PartnerRequest constructor

PartnerRequest({
  1. required String? categoryType,
  2. required String? promotionType,
  3. int? perPage,
  4. int? category,
  5. int? page,
})

Implementation

PartnerRequest({
  required this.categoryType,
  required this.promotionType,
  this.perPage,
  this.category,
  this.page,
});