copyWith method

GetConnectedAffiliatePrograms copyWith({
  1. AffiliateType? affiliate,
  2. String? offset,
  3. int? limit,
})

Implementation

GetConnectedAffiliatePrograms copyWith({
  AffiliateType? affiliate,
  String? offset,
  int? limit,
}) => GetConnectedAffiliatePrograms(
  affiliate: affiliate ?? this.affiliate,
  offset: offset ?? this.offset,
  limit: limit ?? this.limit,
);