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