copyWith method

GetConnectedAffiliateProgram copyWith({
  1. AffiliateType? affiliate,
  2. int? botUserId,
})

Implementation

GetConnectedAffiliateProgram copyWith({
  AffiliateType? affiliate,
  int? botUserId,
}) => GetConnectedAffiliateProgram(
  affiliate: affiliate ?? this.affiliate,
  botUserId: botUserId ?? this.botUserId,
);