PartnerResponse constructor

PartnerResponse({
  1. required Partner? partner,
  2. required List<Promotion>? promotions,
  3. required List<Location>? locations,
  4. required List<Article>? articles,
})

Implementation

PartnerResponse({
  required this.partner,
  required this.promotions,
  required this.locations,
  required this.articles,
});