copyWith method
ConnectedAffiliatePrograms
copyWith({
- int? totalCount,
- List<
ConnectedAffiliateProgram> ? programs, - String? nextOffset,
Implementation
ConnectedAffiliatePrograms copyWith({
int? totalCount,
List<ConnectedAffiliateProgram>? programs,
String? nextOffset,
}) => ConnectedAffiliatePrograms(
totalCount: totalCount ?? this.totalCount,
programs: programs ?? this.programs,
nextOffset: nextOffset ?? this.nextOffset,
);