copyWith method

FoundAffiliatePrograms copyWith({
  1. int? totalCount,
  2. List<FoundAffiliateProgram>? programs,
  3. 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,
);