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