copyWith method

ChatBoostSourceGiveaway copyWith({
  1. int? userId,
  2. String? giftCode,
  3. int? starCount,
  4. int? giveawayMessageId,
  5. bool? isUnclaimed,
})

Implementation

ChatBoostSourceGiveaway copyWith({
  int? userId,
  String? giftCode,
  int? starCount,
  int? giveawayMessageId,
  bool? isUnclaimed,
}) => ChatBoostSourceGiveaway(
  userId: userId ?? this.userId,
  giftCode: giftCode ?? this.giftCode,
  starCount: starCount ?? this.starCount,
  giveawayMessageId: giveawayMessageId ?? this.giveawayMessageId,
  isUnclaimed: isUnclaimed ?? this.isUnclaimed,
);