copyWith method

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